From 81beb5d6b7e549d56fd717f7def96e7bb3e0824b Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 18 Mar 2021 15:35:52 -0500 Subject: Properly setup environment for build. May have been causing issues later on in the build especially with M4. --- lfs.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lfs.sh b/lfs.sh index 41b916f..bcdadc0 100755 --- a/lfs.sh +++ b/lfs.sh @@ -4,9 +4,18 @@ source spinner.sh source colors.sh #source versioncheck.sh -export LFS_VER=LFS10_1 +set +h +umask 022 export LFS=/mnt/lfs -export LFS_TGT=x86_64-lfs-linux-gnu +export LC_ALL=POSIX +export LFS_TGT=$(uname -m)-lfs-linux-gnu +PATH=/usr/bin +if [ ! -L /bin ]; then PATH=/bin:${PATH}; fi +export PATH=${LFS}/tools/bin:${PATH} +echo $PATH +export CONFIG_SITE=${LFS}/usr/share/config.site + +export LFS_VER=LFS10_1 export LFS_DISK=/dev/sdb export LFS_ROOT=1 export LFS_PWD=lfs @@ -18,7 +27,7 @@ export MAKEFLAGS="-j 3" if ! grep -q "${LFS}" /proc/mounts; then source setupdisk.sh "${LFS_DISK}" "${LFS_ROOT}" sudo mount "${LFS_DISK}${LFS_ROOT}" "${LFS}" - sudo chown -v $USER "${LFS}" + sudo chown -v ${USER} "${LFS}" fi mkdir -pv ${LFS_SRC} @@ -41,7 +50,6 @@ esac cp -rf *.sh chapter* packages.csv "${LFS}/sources" cd "${LFS}/sources" -export PATH="${LFS}/tools/bin:${PATH}" source download.sh -- cgit v1.2.3-54-g00ecf