From 4e4a8d5c7fd5ad4dc9f373eb28715d26f5f7605e Mon Sep 17 00:00:00 2001 From: Jeremy Huntwork Date: Sun, 2 Oct 2005 22:39:48 +0000 Subject: [PATCH] Fixed a few typos --- jhalfs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/jhalfs b/jhalfs index 25d91ef..30214f1 100755 --- a/jhalfs +++ b/jhalfs @@ -366,13 +366,13 @@ build_Makefile() { echo -e "\techo \"export TCLPATH\" >> envars && \\" >> $MKFILE.tmp fi - # Inser date and disk usage at the top of the log file. + # Insert date and disk usage at the top of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp # Insert the script run echo -e "\tsu - lfs -c \". /home/lfs/.bashrc && $JHALFSDIR/commands/$file\" >>logs/$i 2>&1 && \\" >> $MKFILE.tmp - # Inser date and disk usage at the bottom of the log file. + # Insert date and disk usage at the bottom of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp # Include a touch of the target name so make can check @@ -405,7 +405,7 @@ build_Makefile() { echo -e "\tfi;" >> $MKFILE.tmp fi - # Remove the Binutils pass 1 sources after a sucessfull Adjusting phase. + # Remove the Binutils pass 1 sources after a successful Adjusting phase. if [ "$i" = "031-adjusting" ] ; then echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp @@ -414,7 +414,7 @@ build_Makefile() { echo -e "\tfi;" >> $MKFILE.tmp fi - # Remove the TCL sources after a sucessfull Expect build. + # Remove the TCL sources after a successful Expect build. if [ "$i" = "033-expect" ] ; then echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp @@ -422,7 +422,7 @@ build_Makefile() { echo -e "\tfi;" >> $MKFILE.tmp fi - # Check if the package has been sucessfully build. + # Check if the package has been successfully built. echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp echo -e "\tfi;" >> $MKFILE.tmp @@ -475,16 +475,16 @@ build_Makefile() { if [ "$i" = "057-kernfs" ] ; then echo -e "\techo \"LFS=\$(LFS)\" > envars && \\" >> $MKFILE.tmp echo -e "\techo \"export LFS\" >> envars && \\" >> $MKFILE.tmp - # Inser date and disk usage at the top of the log file. + # Insert date and disk usage at the top of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp - # Inser date and disk usage at the bottom of the log file. + # Insert date and disk usage at the bottom of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp else - # Inser date and disk usage at the top of the log file. + # Insert date and disk usage at the top of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp - # Inser date and disk usage at the bottom of the log file. + # Insert date and disk usage at the bottom of the log file. echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp fi @@ -501,7 +501,7 @@ build_Makefile() { echo -e "\tfi;" >> $MKFILE.tmp fi - # Remove the Binutils pass 2 sources after a sucessfull Re-Adjusting phase. + # Remove the Binutils pass 2 sources after a successful Re-Adjusting phase. if [ "$i" = "067-readjusting" ] ; then echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp echo -e "\t\trm -r \`cat sources-dir\` && \\" >> $MKFILE.tmp @@ -510,7 +510,7 @@ build_Makefile() { echo -e "\tfi;" >> $MKFILE.tmp fi - # Check if the package has been sucessfully build. + # Check if the package has been successfully built. echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp echo -e "\tfi;" >> $MKFILE.tmp @@ -533,7 +533,7 @@ build_Makefile() { # Drop in the main target 'all:' and the chapter targets with each sub-target # as a dependency. echo "all: chapter4 chapter5" >> $MKFILE - echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been sucessfully build\"\n" >> $MKFILE + echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been successfully built\"\n" >> $MKFILE echo -e "chapter4: 020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE echo -e "chapter5: chapter4 $chapter5\n" >> $MKFILE >> $MKFILE echo -e "chapter6: chapter5 $chapter6\n" >> $MKFILE