Changeset 4e4a8d5


Ignore:
Timestamp:
10/02/2005 10:39:48 PM (19 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Branches:
0.2, 1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
732d1f1
Parents:
7ecd166
Message:

Fixed a few typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • jhalfs

    r7ecd166 r4e4a8d5  
    367367    fi
    368368
    369     # Inser date and disk usage at the top of the log file.
     369    # Insert date and disk usage at the top of the log file.
    370370    echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
    371371
     
    373373    echo -e "\tsu - lfs -c \". /home/lfs/.bashrc && $JHALFSDIR/commands/$file\" >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
    374374
    375     # Inser date and disk usage at the bottom of the log file.
     375    # Insert date and disk usage at the bottom of the log file.
    376376    echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp
    377377
     
    406406    fi
    407407
    408     # Remove the Binutils pass 1 sources after a sucessfull Adjusting phase.
     408    # Remove the Binutils pass 1 sources after a successful Adjusting phase.
    409409    if [ "$i" = "031-adjusting" ] ; then
    410410      echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
     
    415415    fi
    416416
    417     # Remove the TCL sources after a sucessfull Expect build.
     417    # Remove the TCL sources after a successful Expect build.
    418418    if [ "$i" = "033-expect" ] ; then
    419419      echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
     
    423423    fi
    424424
    425     # Check if the package has been sucessfully build.
     425    # Check if the package has been successfully built.
    426426    echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
    427427    echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
     
    476476      echo -e "\techo \"LFS=\$(LFS)\" > envars && \\" >> $MKFILE.tmp
    477477      echo -e "\techo \"export LFS\" >> envars && \\" >> $MKFILE.tmp
    478       # Inser date and disk usage at the top of the log file.
     478      # Insert date and disk usage at the top of the log file.
    479479      echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
    480480      echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
    481       # Inser date and disk usage at the bottom of the log file.
     481      # Insert date and disk usage at the bottom of the log file.
    482482      echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* \$(LFS)\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp
    483483    else
    484       # Inser date and disk usage at the top of the log file.
     484      # Insert date and disk usage at the top of the log file.
    485485      echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >logs/$i && \\" >> $MKFILE.tmp
    486486      echo -e "\t. envars && commands/$file >>logs/$i 2>&1 && \\" >> $MKFILE.tmp
    487       # Inser date and disk usage at the bottom of the log file.
     487      # Insert date and disk usage at the bottom of the log file.
    488488      echo -e "\techo -e \"\\\n\`date\`\\\n\\\nKB: \`du -sk --exclude=0??-* /\`\\\n\" >>logs/$i && \\" >> $MKFILE.tmp
    489489    fi
     
    502502    fi
    503503
    504     # Remove the Binutils pass 2 sources after a sucessfull Re-Adjusting phase.
     504    # Remove the Binutils pass 2 sources after a successful Re-Adjusting phase.
    505505    if [ "$i" = "067-readjusting" ] ; then
    506506      echo -e "\tif [ -e \$@ ] ; then \\" >> $MKFILE.tmp
     
    511511    fi
    512512
    513     # Check if the package has been sucessfully build.
     513    # Check if the package has been successfully built.
    514514    echo -e "\t@if [ ! -e \$@ ] ; then \\" >> $MKFILE.tmp
    515515    echo -e "\t\techo \"The build of \$@ has failed\" && exit 1; \\" >> $MKFILE.tmp
     
    534534  # as a dependency.
    535535  echo "all:  chapter4 chapter5" >> $MKFILE
    536   echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been sucessfully build\"\n" >> $MKFILE
     536  echo -e "\t@echo -e \"\\\n\\\tYour new LFS system has been successfully built\"\n" >> $MKFILE
    537537  echo -e "chapter4:  020-creatingtoolsdir 021-addinguser 022-settingenvironment\n" >> $MKFILE
    538538  echo -e "chapter5:  chapter4 $chapter5\n" >> $MKFILE >> $MKFILE
Note: See TracChangeset for help on using the changeset viewer.