Fixed all occurences of 'touch $@' to be the last in a target
This commit is contained in:
parent
732d1f1694
commit
968dafd746
1 changed files with 4 additions and 4 deletions
8
jhalfs
8
jhalfs
|
@ -375,10 +375,6 @@ build_Makefile() {
|
||||||
# Insert date and disk usage at the bottom of the log file.
|
# Insert date and disk usage at the bottom of the log file.
|
||||||
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp
|
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp
|
||||||
|
|
||||||
# Include a touch of the target name so make can check
|
|
||||||
# if it's already been made.
|
|
||||||
echo -e "\ttouch \$@" >> $MKFILE.tmp
|
|
||||||
|
|
||||||
# Remove the build directory(ies) even if the package build fails, except for
|
# Remove the build directory(ies) even if the package build fails, except for
|
||||||
# Binutils and TCL. In that cases the sources directories are removed
|
# Binutils and TCL. In that cases the sources directories are removed
|
||||||
# only if the build fails.
|
# only if the build fails.
|
||||||
|
@ -426,6 +422,10 @@ build_Makefile() {
|
||||||
echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
|
||||||
echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
|
echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
|
||||||
echo -e "\tfi;" >> $MKFILE.tmp
|
echo -e "\tfi;" >> $MKFILE.tmp
|
||||||
|
|
||||||
|
# Include a touch of the target name so make can check
|
||||||
|
# if it's already been made.
|
||||||
|
echo -e "\ttouch \$@" >> $MKFILE.tmp
|
||||||
|
|
||||||
# Keep the script file name for Makefile dependencies.
|
# Keep the script file name for Makefile dependencies.
|
||||||
PREV=$i
|
PREV=$i
|
||||||
|
|
Reference in a new issue