From e9aa8355c2c30ad4c48ed8a85414cf0c7a910ff8 Mon Sep 17 00:00:00 2001 From: Ivan Davidov Date: Mon, 25 Dec 2017 20:03:52 +0200 Subject: [PATCH] Minor 'Makefile' enhancements. Regarding the previous commit - the source generation has been enhanced and the overlay bundle generates the source archive which now has explicit root folder. --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 844e06ebe..a674f79c0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -88,10 +88,13 @@ src: release: src @{ \ + echo "Removing old work artifacts." ; \ rm -rf /tmp/mll_release ; \ mkdir -p /tmp/mll_release ; \ + echo "Preparing MLL source tree." ; \ cp minimal_linux_live_*_src.tar.xz /tmp/mll_release ; \ - cd /tmp/mll_release && tar -xf minimal_linux_live_*_src.tar.xz ; \ + cd /tmp/mll_release ; \ + tar -xf minimal_linux_live_*_src.tar.xz ; \ cd /tmp/mll_release/minimal_linux_live_*/ ; \ echo "Launching the main build script." ; \ /usr/bin/time -f "\n Elapsed time: %E" ./build_minimal_linux_live.sh 2>&1 | tee minimal_linux_live.log ; \