Remove /tools and /cross-tools when cleaning
If we stop a build before the "do-housekeeping" target is executed, there may be symlinks of the type /tools->/mnt/lfs/tools. If we want to restart, for example after fixing something else, and we run the "creatingtoolsdir" target (or similar one in CLFS) again, it will fail. It's better to clean those symlinks when cleaning the build directory.
This commit is contained in:
parent
20e3fcdec2
commit
5e4a124e3d
1 changed files with 3 additions and 0 deletions
|
@ -93,6 +93,9 @@ if [ "${CLEAN}" = "y" ]; then
|
|||
echo -n "Cleaning remaining extracted sources in $BUILDDIR/sources ..."
|
||||
sudo rm -rf `find $BUILDDIR/sources -maxdepth 1 -mindepth 1 -type d`
|
||||
echo "done"
|
||||
echo -n "Removing dangling symlinks in / ..."
|
||||
sudo rm -f /tools /cross-tools
|
||||
echo "done"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
|
Reference in a new issue