Remove lib64 when cleaning build dir
This commit is contained in:
parent
eabc2055e3
commit
6faeb632b2
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,8 @@ if [ "${CLEAN}" = "y" ]; then
|
||||||
if [ -d $BUILDDIR/sys ] ; then
|
if [ -d $BUILDDIR/sys ] ; then
|
||||||
sudo rmdir $BUILDDIR/sys || exit 1
|
sudo rmdir $BUILDDIR/sys || exit 1
|
||||||
fi
|
fi
|
||||||
sudo rm -rf $BUILDDIR/{bin,boot,dev,etc,home,lib,media,mnt,opt,root,sbin,srv,tmp,tools,cross-tools,usr,var}
|
sudo rm -rf $BUILDDIR/{bin,boot,dev,etc,home,lib{,64},media,mnt}
|
||||||
|
sudo rm -rf $BUILDDIR/{opt,root,sbin,srv,tmp,tools,cross-tools,usr,var}
|
||||||
if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
if [[ "${BLFS_TOOL}" = "y" ]] ; then
|
||||||
sudo rm -rf $BUILDDIR/$BLFS_ROOT
|
sudo rm -rf $BUILDDIR/$BLFS_ROOT
|
||||||
fi
|
fi
|
||||||
|
|
Reference in a new issue