Bug fix: removed set +h from chroot commands.
This commit is contained in:
parent
3c38ab0985
commit
f3a7f3b897
3 changed files with 6 additions and 3 deletions
|
@ -758,7 +758,8 @@ set -e
|
|||
-e 's|exit||g' \
|
||||
-e 's|$| -c|' \
|
||||
-e 's|"$${CLFS}"|$(MOUNT_PT)|'\
|
||||
-e 's|set -e||'`
|
||||
-e 's|set -e||' \
|
||||
-e 's|set +h||'`
|
||||
echo -e "CHROOT1= $chroot\n" >> $MKFILE
|
||||
fi
|
||||
|
||||
|
|
|
@ -512,7 +512,8 @@ build_Makefile() { # Construct a Makefile from the book scripts
|
|||
-e 's|exit||g' \
|
||||
-e 's|$| -c|' \
|
||||
-e 's|"$$HLFS"|$(MOUNT_PT)|'\
|
||||
-e 's|set -e||'`
|
||||
-e 's|set -e||' \
|
||||
-e 's|set +h||'`
|
||||
echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
||||
i=`expr $i + 1`
|
||||
done
|
||||
|
|
|
@ -398,7 +398,8 @@ build_Makefile() { #
|
|||
-e 's|exit||g' \
|
||||
-e 's|$| -c|' \
|
||||
-e 's|"$$LFS"|$(MOUNT_PT)|' \
|
||||
-e 's|set -e||'`
|
||||
-e 's|set -e||' \
|
||||
-e 's|set +h||'`
|
||||
echo -e "CHROOT$i= $chroot\n" >> $MKFILE
|
||||
i=`expr $i + 1`
|
||||
done
|
||||
|
|
Reference in a new issue