Add instructions to copy to SRC_ARCHIVE in func_install_blfs, so that files
are kept in host repo, and not downloaded again, should a new build be started.
This commit is contained in:
parent
54380e5020
commit
fc0802bf5f
1 changed files with 12 additions and 4 deletions
|
@ -132,11 +132,19 @@ mv scripts $BUILDDIR$BLFS_ROOT
|
||||||
|
|
||||||
# Generates a list containing download and copying instructions for tarballs
|
# Generates a list containing download and copying instructions for tarballs
|
||||||
echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
|
echo -e '#!/bin/bash\nset -e\n' > $BUILDDIR$BLFS_ROOT/download_script
|
||||||
sed -n -e '/PACKAGE=/,/^fi/p' \
|
sed -n -e '/PACKAGE=/,/^fi/{/^fi/a\
|
||||||
|
cp $PACKAGE $SRC_ARCHIVE
|
||||||
|
p}' \
|
||||||
-e '/|[ ]*md5sum/p' \
|
-e '/|[ ]*md5sum/p' \
|
||||||
-e '/PACKAGE1=/,/^fi/p' \
|
-e '/PACKAGE1=/,/^fi/{/^fi/a\
|
||||||
-e '/PATCH=/,/^fi/p' \
|
cp $PACKAGE1 $SRC_ARCHIVE
|
||||||
-e '/URL=/,/^fi/p' \
|
p}' \
|
||||||
|
-e '/PATCH=/,/^fi/{/^fi/a\
|
||||||
|
cp $PACKAGE1 $SRC_ARCHIVE
|
||||||
|
p}' \
|
||||||
|
-e '/URL=/,/^fi/{/^fi/a\
|
||||||
|
cp $PACKAGE1 $SRC_ARCHIVE
|
||||||
|
p}' \
|
||||||
$BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
|
$BUILDDIR$BLFS_ROOT/scripts/* >> $BUILDDIR$BLFS_ROOT/download_script
|
||||||
chmod u+x $BUILDDIR$BLFS_ROOT/download_script
|
chmod u+x $BUILDDIR$BLFS_ROOT/download_script
|
||||||
|
|
||||||
|
|
Reference in a new issue