Improved code readability.

Many thanks to George Boudreau.
This commit is contained in:
Manuel Canales Esparcia 2005-10-04 18:37:09 +00:00
parent 7450da364a
commit 3f990d1251

352
jhalfs
View file

@ -327,8 +327,13 @@ build_Makefile() {
# Drop in the name of the target on a new line, and the previous target # Drop in the name of the target on a new line, and the previous target
# as a dependency. Also call the echo_message function. # as a dependency. Also call the echo_message function.
echo -e "\n$i: $PREV" >> $MKFILE.tmp (
echo -e "\t@\$(call echo_message, Building)" >> $MKFILE.tmp cat << EOF
$i: $PREV
@\$(call echo_message, Building)
EOF
) >> $MKFILE.tmp
# Find the version of the command files, if it corresponds with the building of # Find the version of the command files, if it corresponds with the building of
# a specific package # a specific package
@ -344,85 +349,132 @@ build_Makefile() {
# Insert instructions for unpacking the package and to set # Insert instructions for unpacking the package and to set
# the PKGDIR variable. # the PKGDIR variable.
echo -e "\t@\$(call unpack,$FILE)" >> $MKFILE.tmp (
echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp cat << EOF
echo -e "\tchown -R lfs \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp @\$(call unpack,$FILE)
echo -e "\techo \"PKGDIR=\$(LFS)\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp @ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
echo -e "\techo \"export PKGDIR\" >> envars && \\" >> $MKFILE.tmp chown -R lfs \$(LFS)\$(SRC)/\$\$ROOT && \\
echo "PKGDIR=\$(LFS)\$(SRC)/\$\$ROOT" > envars && \\
echo "export PKGDIR" >> envars && \\
EOF
) >> $MKFILE.tmp
fi fi
# Dump the path to the Binutils or TCL sources directory. # Dump the path to the Binutils or TCL sources directory.
if [ "$i" = "027-binutils-pass1" -o "$i" = "032-tcl" -o "$i" = "036-binutils-pass2" ] ; then if [ "$i" = "027-binutils-pass1" -o "$i" = "032-tcl" -o "$i" = "036-binutils-pass2" ] ; then
echo -e "\techo \"\$(LFS)\$(SRC)/\$\$ROOT\" > sources-dir" >> $MKFILE.tmp (
cat << EOF
echo "\$(LFS)\$(SRC)/\$\$ROOT" > sources-dir
EOF
) >> $MKFILE.tmp
# For the Adjusting phase we must to cd to the binutils-build directory. # For the Adjusting phase we must to cd to the binutils-build directory.
elif [ "$i" = "031-adjusting" ] ; then elif [ "$i" = "031-adjusting" ] ; then
echo -e "\t@echo \"PKGDIR=\$(LFS)\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp (
echo -e "\techo \"export PKGDIR\" >> envars" >> $MKFILE.tmp cat << EOF
@echo "PKGDIR=\$(LFS)\$(SRC)/binutils-build" > envars && \\
echo "export PKGDIR" >> envars
EOF
) >> $MKFILE.tmp
# For the Expect build we need to set the TCLPATH envar. # For the Expect build we need to set the TCLPATH envar.
elif [ "$i" = "033-expect" ] ; then elif [ "$i" = "033-expect" ] ; then
echo -e "\techo \"TCLPATH=\`cat sources-dir\`\" >> envars && \\" >> $MKFILE.tmp (
echo -e "\techo \"export TCLPATH\" >> envars" >> $MKFILE.tmp cat << EOF
echo "TCLPATH=\`cat sources-dir\`" >> envars && \\
echo "export TCLPATH" >> envars
EOF
) >> $MKFILE.tmp
# Everything else, add a true statment so we don't confuse make # Everything else, add a true statment so we don't confuse make
else else
echo -e "\ttrue" >> $MKFILE.tmp (
cat << EOF
true
EOF
) >> $MKFILE.tmp
fi fi
# Insert date and disk usage at the top of the log file. # Insert date and disk usage at the top of the log file, the script run
echo -e "\t@echo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp # and date and disk usage again at the bottom of the log file.
(
# Insert the script run cat << EOF
echo -e "\tsu - lfs -c \". /home/lfs/.bashrc && $JHALFSDIR/commands/$file\" >>logs/$i 2>&1 && \\" >> $MKFILE.tmp @echo -e "\n\`date\`\n\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\n" >logs/$i && \\
su - lfs -c "source /home/lfs/.bashrc && $JHALFSDIR/commands/$file" >>logs/$i 2>&1 && \\
# Insert date and disk usage at the bottom of the log file. echo -e "\n\`date\`\n\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\n" >>logs/$i
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp EOF
) >> $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.
if [ "$vrs" != "" ] ; then if [ "$vrs" != "" ] ; then
if [ "$i" != "027-binutils-pass1" ] && [ "$i" != "032-tcl" ] && [ "$i" != "036-binutils-pass2" ] ; then if [ "$i" != "027-binutils-pass1" ] && [ "$i" != "032-tcl" ] && [ "$i" != "036-binutils-pass2" ] ; then
echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp (
echo -e "\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp cat << EOF
echo -e "\tif [ -e \$(LFS)\$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp @ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
echo -e "\t\trm -r \$(LFS)\$(SRC)/$name-build; \\" >> $MKFILE.tmp rm -r \$(LFS)\$(SRC)/\$\$ROOT && \\
echo -e "\tfi;" >> $MKFILE.tmp if [ -e \$(LFS)\$(SRC)/$name-build ]; then \\
rm -r \$(LFS)\$(SRC)/$name-build; \\
fi;
EOF
) >> $MKFILE.tmp
fi fi
fi fi
# Remove the Binutils pass 1 sources after a successful Adjusting phase. # Remove the Binutils pass 1 sources after a successful Adjusting phase.
if [ "$i" = "031-adjusting" ] ; then if [ "$i" = "031-adjusting" ] ; then
echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp (
echo -e "\trm -r \$(LFS)\$(SRC)/binutils-build && \\" >> $MKFILE.tmp cat << EOF
echo -e "\trm sources-dir" >> $MKFILE.tmp @rm -r \`cat sources-dir\` && \\
rm -r \$(LFS)\$(SRC)/binutils-build && \\
rm sources-dir
EOF
) >> $MKFILE.tmp
fi fi
# Remove the TCL sources after a successful Expect build. # Remove the TCL sources after a successful Expect build.
if [ "$i" = "033-expect" ] ; then if [ "$i" = "033-expect" ] ; then
echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp (
echo -e "\trm sources-dir" >> $MKFILE.tmp cat << EOF
@rm -r \`cat sources-dir\` && \\
rm sources-dir
EOF
) >> $MKFILE.tmp
fi fi
# Include a touch of the target name so make can check # Include a touch of the target name so make can check
# if it's already been made. # if it's already been made.
echo -e "\t@touch \$@" >> $MKFILE.tmp (
cat << EOF
@touch \$@
EOF
) >> $MKFILE.tmp
# The next two "if" must be after the touch to can check if the sources # The next two "if" must be after the touch to can check if the sources
# directories should be retained or deleted. # directories should be retained or deleted.
if [ "$i" = "027-binutils-pass1" -o "$i" = "036-binutils-pass2" ] ; then if [ "$i" = "027-binutils-pass1" -o "$i" = "036-binutils-pass2" ] ; then
echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp (
echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp cat << EOF
echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp @if [ ! -e \$@ ] ; then \\
echo -e "\t\trm -r \$(LFS)\$(SRC)/binutils-build; \\" >> $MKFILE.tmp ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
echo -e "\tfi;" >> $MKFILE.tmp rm -r \$(LFS)\$(SRC)/\$\$ROOT && \\
rm -r \$(LFS)\$(SRC)/binutils-build; \\
fi;
EOF
) >> $MKFILE.tmp
fi fi
if [ "$i" = "032-tcl" ] ; then if [ "$i" = "032-tcl" ] ; then
echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp (
echo -e "\t\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp cat << EOF
echo -e "\t\trm -r \$(LFS)\$(SRC)/\$\$ROOT; \\" >> $MKFILE.tmp @if [ ! -e \$@ ] ; then \\
echo -e "\tfi;" >> $MKFILE.tmp ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
rm -r \$(LFS)\$(SRC)/\$\$ROOT; \\
fi;
EOF
) >> $MKFILE.tmp
fi fi
# Keep the script file name for Makefile dependencies. # Keep the script file name for Makefile dependencies.
@ -448,8 +500,13 @@ build_Makefile() {
if echo $i | grep -q "chroot" ; then if echo $i | grep -q "chroot" ; then
continue continue
else else
echo -e "\n$i: $PREV" >> $MKFILE.tmp (
echo -e "\t@\$(call echo_message, Building)" >> $MKFILE.tmp cat << EOF
$i: $PREV
@\$(call echo_message, Building)
EOF
) >> $MKFILE.tmp
fi fi
# Find the version of the command files, if it corresponds with the building of # Find the version of the command files, if it corresponds with the building of
@ -457,74 +514,104 @@ build_Makefile() {
vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'` vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
# If $vrs isn't empty, we've got a package... # If $vrs isn't empty, we've got a package...
# Insert instructions for unpacking the package and changing directories
if [ "$vrs" != "" ] ; then if [ "$vrs" != "" ] ; then
FILE="$name-$vrs.tar.bz2" FILE="$name-$vrs.tar.bz2"
(
# Insert instructions for unpacking the package and changing directories cat << EOF
echo -e "\t@\$(call unpack,$FILE)" >> $MKFILE.tmp @\$(call unpack,$FILE)
echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp @ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
echo -e "\techo \"PKGDIR=\$(SRC)/\$\$ROOT\" > envars && \\" >> $MKFILE.tmp echo "PKGDIR=\$(SRC)/\$\$ROOT" > envars && \\
echo -e "\techo \"export PKGDIR\" >> envars\\" >> $MKFILE.tmp echo "export PKGDIR" >> envars\\
EOF
) >> $MKFILE.tmp
fi fi
# For the Re-Adjusting phase we must to cd to the binutils-build directory. # For the Re-Adjusting phase we must to cd to the binutils-build directory.
if [ "$i" = "067-readjusting" ] ; then if [ "$i" = "067-readjusting" ] ; then
echo -e "\t@echo \"PKGDIR=\$(SRC)/binutils-build\" > envars && \\" >> $MKFILE.tmp (
echo -e "\techo \"export PKGDIR\" >> envars" >> $MKFILE.tmp cat << EOF
@echo "PKGDIR=\$(SRC)/binutils-build" > envars && \\
echo "export PKGDIR" >> envars
EOF
) >> $MKFILE.tmp
fi fi
# For the mount of kernel filesystems we need to set LFS and not to use # For the mount of kernel filesystems we need to set LFS and not to use
# chroot. # chroot.
if [ "$i" = "057-kernfs" ] ; then if [ "$i" = "057-kernfs" ] ; then
echo -e "\t@echo \"LFS=\$(LFS)\" > envars && \\" >> $MKFILE.tmp (
echo -e "\techo \"export LFS\" >> envars && \\" >> $MKFILE.tmp cat << EOF
# Insert date and disk usage at the top of the log file. @echo "LFS=\$(LFS)" > envars && \\
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp echo "export LFS" >> envars && \\
# Insert the script run echo -e "\n\`date\`\n\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\n" >logs/$i && \\
echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp . envars && commands/$file >>logs/$i 2>&1 && \\
# Insert date and disk usage at the bottom of the log file. echo -e "\n\`date\`\n\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\n" >>logs/$i
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp EOF
) >> $MKFILE.tmp
# The rest of Chapter06 use CHROOT1 function # The rest of Chapter06 use CHROOT1 function
else else
# Insert date and disk usage at the top of the log file. (
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -skx --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp cat << EOF
# Insert the script run echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=0??-* \$(LFS)\`\n" >logs/$i && \\
echo -e "\t\$(CHROOT1) 'cd /jhalfs && . envars && commands/$file >>logs/$i 2>&1' && \\" >> $MKFILE.tmp \$(CHROOT1) 'cd /jhalfs && source envars && commands/$file >>logs/$i 2>&1' && \\
# Insert date and disk usage at the bottom of the log file. echo -e "\n\`date\`\n\nKB: \`du -skx --exclude=0??-* \$(LFS)\`\n" >>logs/$i
echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -skx --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i" >> $MKFILE.tmp EOF
) >> $MKFILE.tmp
fi fi
# Remove the build directory(ies) even if the package build fails. # Remove the build directory(ies) even if the package build fails.
if [ "$vrs" != "" ] ; then if [ "$vrs" != "" ] ; then
echo -e "\t@ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp (
echo -e "\trm -r \$(LFS)\$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp cat << EOF
echo -e "\tif [ -e \$(LFS)\$(SRC)/$name-build ]; then \\" >> $MKFILE.tmp @ROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\
echo -e "\t\trm -r \$(LFS)\$(SRC)/$name-build; \\" >> $MKFILE.tmp rm -r \$(LFS)\$(SRC)/\$\$ROOT && \\
echo -e "\tfi;" >> $MKFILE.tmp if [ -e \$(LFS)\$(SRC)/$name-build ]; then \\
rm -r \$(LFS)\$(SRC)/$name-build; \\
fi;
EOF
) >> $MKFILE.tmp
fi fi
# Remove the Binutils pass 2 sources after a successful Re-Adjusting phase. # Remove the Binutils pass 2 sources after a successful Re-Adjusting phase.
if [ "$i" = "067-readjusting" ] ; then if [ "$i" = "067-readjusting" ] ; then
echo -e "\t@rm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp (
echo -e "\trm -r \$(LFS)\$(SRC)/binutils-build && \\" >> $MKFILE.tmp cat << EOF
echo -e "\trm sources-dir" >> $MKFILE.tmp @rm -r \`cat sources-dir\` && \\
rm -r \$(LFS)\$(SRC)/binutils-build && \\
rm sources-dir
EOF
) >> $MKFILE.tmp
fi fi
# Include a touch of the target name so make can check # Include a touch of the target name so make can check
# if it's already been made. # if it's already been made.
echo -e "\t@touch \$@" >> $MKFILE.tmp (
cat << EOF
@touch \$@
EOF
) >> $MKFILE.tmp
# Keep the script file name for Makefile dependencies. # Keep the script file name for Makefile dependencies.
PREV=$i PREV=$i
done done
# Add a header to the top of the real Makefile # Add a header, some variables and include the function file
echo -e "$HEADER\n" > $MKFILE # to the top of the real Makefile.
(
cat << EOF
$HEADER
SRC= /sources
LFS= $BUILDDIR
include functions
EOF
) > $MKFILE
# Add some variables and include the functions file
echo "SRC= /sources" >> $MKFILE
echo -e "LFS= $BUILDDIR\n" >> $MKFILE
echo -e "include functions\n" >> $MKFILE
# Add chroot commands # Add chroot commands
i=1 i=1
@ -537,65 +624,66 @@ build_Makefile() {
# Drop in the main target 'all:' and the chapter targets with each sub-target # Drop in the main target 'all:' and the chapter targets with each sub-target
# as a dependency. # as a dependency.
echo "all: chapter4 chapter5" >> $MKFILE (
echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been successfully built\"\n" >> $MKFILE cat << EOF
echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE all: chapter4 chapter5
echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE @echo -e "\n\tYour new LFS system has been successfully built"
echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE
# Clean targets chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment
echo "clean-all: clean" >> $MKFILE
echo -e "\trm -rf ./*\n" >> $MKFILE
echo -e "clean: clean-chapter5 clean-chapter4\n" >> $MKFILE chapter5: chapter4 $chapter5
echo "clean-chapter4:" >> $MKFILE chapter6: chapter5 $chapter6
echo -e "\t-userdel lfs" >> $MKFILE
echo -e "\trm -rf /home/lfs" >> $MKFILE
echo -e "\trm -rf \$(LFS)/tools" >> $MKFILE
echo -e "\trm -f /tools" >> $MKFILE
echo -e "\trm -f envars" >> $MKFILE
echo -e "\trm -f 02* logs/02*.log\n" >> $MKFILE
echo "clean-chapter5:" >> $MKFILE clean-all: clean
echo -e "\trm -rf \$(LFS)/tools/*" >> $MKFILE rm -rf ./*
echo -e "\trm -f envars" >> $MKFILE
echo -e "\trm -f $chapter5" >> $MKFILE
echo -e "\tcd logs && rm -f $chapter5 && cd ..\n" >> $MKFILE
# The chapter4 sub-targets are hard-coded to create the lfs user, clean: clean-chapter5 clean-chapter4
# to make the scripts executable, and to create a clean environment
# for the lfs user.
echo "020-creatingtoolsdir:" >> $MKFILE
echo -e "\t@\$(call echo_message, Building)" >> $MKFILE
echo -e "\t@mkdir -v \$(LFS)/tools && \\" >> $MKFILE
echo -e "\tln -sv \$(LFS)/tools / && \\" >> $MKFILE
echo -e "\ttouch \$@\n" >> $MKFILE
echo "021-addinguser: 020-creatingtoolsdir" >> $MKFILE clean-chapter4:
echo -e "\t@\$(call echo_message, Building)" >> $MKFILE -userdel lfs
echo -e "\t@groupadd lfs && \\" >> $MKFILE rm -rf /home/lfs
echo -e "\tuseradd -s /bin/bash -g lfs -m -k /dev/null lfs && \\" >> $MKFILE rm -rf \$(LFS)/tools
echo -e "\tchown lfs \$(LFS)/tools && \\" >> $MKFILE rm -f /tools
echo -e "\tchown lfs \$(LFS)/sources && \\" >> $MKFILE rm -f envars
# Make the scripts executable rm -f 02* logs/02*.log
echo -e "\tchmod -R +x $JHALFSDIR/commands && \\" >> $MKFILE
echo -e "\ttouch \$@\n" >> $MKFILE
echo "022-settingenvironment: 021-addinguser" >> $MKFILE clean-chapter5:
echo -e "\t@\$(call echo_message, Building)" >> $MKFILE rm -rf \$(LFS)/tools/*
echo -e "\t@echo \"exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash\" > /home/lfs/.bash_profile && \\" >> $MKFILE rm -f envars
echo -e "\techo \"set +h\" > /home/lfs/.bashrc && \\" >> $MKFILE rm -f $chapter5
echo -e "\techo \"umask 022\" >> /home/lfs/.bashrc && \\" >> $MKFILE cd logs && rm -f $chapter5 && cd ..
echo -e "\techo \"LFS=/mnt/lfs\" >> /home/lfs/.bashrc && \\" >> $MKFILE
echo -e "\techo \"LC_ALL=POSIX\" >> /home/lfs/.bashrc && \\" >> $MKFILE 020-creatingtoolsdir:
echo -e "\techo \"PATH=/tools/bin:/bin:/usr/bin\" >> /home/lfs/.bashrc && \\" >> $MKFILE @\$(call echo_message, Building)
echo -e "\techo \"export LFS LC_ALL PATH\" >> /home/lfs/.bashrc && \\" >> $MKFILE @mkdir -v \$(LFS)/tools && \\
# Source the file where we place changing variables. ln -sv \$(LFS)/tools / && \\
echo -e "\techo \". $JHALFSDIR/envars\" >> /home/lfs/.bashrc && \\" >> $MKFILE touch \$@
echo -e "\tchown lfs:lfs /home/lfs/.bash* && \\" >> $MKFILE
echo -e "\ttouch envars && \\" >> $MKFILE 021-addinguser: 020-creatingtoolsdir
echo -e "\ttouch \$@" >> $MKFILE @\$(call echo_message, Building)
@groupadd lfs && \\
useradd -s /bin/bash -g lfs -m -k /dev/null lfs && \\
chown lfs \$(LFS)/tools && \\
chown lfs \$(LFS)/sources && \\
chmod -R +x $JHALFSDIR/commands && \\
touch \$@
022-settingenvironment: 021-addinguser
@\$(call echo_message, Building)
@echo "exec env -i HOME=\\\$\$HOME TERM=\\\$\$TERM PS1='\u:\w\$$ ' /bin/bash" > /home/lfs/.bash_profile && \\
echo "set +h" > /home/lfs/.bashrc && \\
echo "umask 022" >> /home/lfs/.bashrc && \\
echo "LFS=/mnt/lfs" >> /home/lfs/.bashrc && \\
echo "LC_ALL=POSIX" >> /home/lfs/.bashrc && \\
echo "PATH=/tools/bin:/bin:/usr/bin" >> /home/lfs/.bashrc && \\
echo "export LFS LC_ALL PATH" >> /home/lfs/.bashrc && \\
echo ". $JHALFSDIR/envars" >> /home/lfs/.bashrc && \\
chown lfs:lfs /home/lfs/.bash* && \\
touch envars && \\
touch \$@
EOF
) >> $MKFILE
# Bring over the items from the Makefile.tmp # Bring over the items from the Makefile.tmp
cat $MKFILE.tmp >> $MKFILE cat $MKFILE.tmp >> $MKFILE