From: Michael Tremer Date: Tue, 28 Nov 2017 17:28:09 +0000 (+0000) Subject: make.sh: Drop generating a global rootfile X-Git-Tag: v2.19-core117~1^2~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77b9a869ae25f3facff9f064164cabf99323f829;p=people%2Fpmueller%2Fipfire-2.x.git make.sh: Drop generating a global rootfile Signed-off-by: Michael Tremer --- diff --git a/make.sh b/make.sh index 7128a40888..4860df58cc 100755 --- a/make.sh +++ b/make.sh @@ -1593,19 +1593,6 @@ buildpackages() { stdumount rm -rf $BASEDIR/build/tmp/* - # Generating total list of files - echo -n "Generating files list from logs" | tee -a $LOGFILE - rm -f $BASEDIR/log/FILES - for i in `ls -1tr $BASEDIR/log/[^_]*`; do - if [ "$i" != "$BASEDIR/log/FILES" -a -n $i ]; then - echo "##" >>$BASEDIR/log/FILES - echo "## `basename $i`" >>$BASEDIR/log/FILES - echo "##" >>$BASEDIR/log/FILES - cat $i | sed "s%^\./%#%" | sort >> $BASEDIR/log/FILES - fi - done - print_status DONE - cd $PWD }