Changeset b11c10b


Ignore:
Timestamp:
03/21/2007 02:34:14 AM (17 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
020f4dc
Parents:
c180dec
Message:

Minor formatting changes for consistency and a typo fix in the README.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LFS/master.sh

    rc180dec rb11c10b  
    277277chapter78_Makefiles() {
    278278#----------------------------#
    279   echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8 ( BOOT ) ${R_arrow}"
     279  echo "${tab_}${GREEN}Processing... ${L_arrow}Chapter7/8   ( BOOT ) ${R_arrow}"
    280280
    281281  for file in chapter0{7,8}/* ; do
  • README

    rc180dec rb11c10b  
    235235    Q. "What is the function of "User account" and "Group account" menu settings?"
    236236    A. If you are running jhalfs from a low or non-privileged account you may not
    237        have the priv to create/delete the user needed to build temporally tools.
     237       have the priv to create/delete the user needed to build temporary tools.
    238238       These settings allow you to use your own user and group name to do that
    239239       build steps.
  • common/libs/func_book_parser

    rc180dec rb11c10b  
    8484  case ${PROGNAME} in
    8585    clfs)
    86         echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
     86        echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
    8787        xsltproc --nonet \
    8888                 --xinclude \
     
    9898
    9999    clfs2)
    100         echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
     100        echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
    101101        xsltproc --nonet \
    102102                 --xinclude \
     
    109109
    110110    clfs3)
    111         echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture"
     111        echo -n " ${L_arrow}${BOLD}$ARCH${R_arrow} target architecture... "
    112112        xsltproc --nonet \
    113113                 --xinclude \
     
    120120
    121121    hlfs)
    122         echo -n " ${L_arrow}${BOLD}$MODEL${R_arrow} HLFS libc implementation"
     122        echo -n " ${L_arrow}${BOLD}$MODEL${R_arrow} HLFS libc implementation... "
    123123        xsltproc --nonet \
    124124                 --xinclude \
     
    134134      ;;
    135135    lfs)
    136         echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build"
     136        echo -n " ${L_arrow}${BOLD}LFS${R_arrow} build... "
    137137        xsltproc --nonet \
    138138                 --xinclude \
     
    145145                 -o ./${PROGNAME}-commands/ $XSL $BOOK/index.xml >>$LOGDIR/$LOG 2>&1
    146146      ;;
    147     *)  echo -n " ${L_arrow}${BOLD}${PROGNAME}${R_arrow} book invalid, terminate build"
     147    *)  echo -n " ${L_arrow}${BOLD}${PROGNAME}${R_arrow} book invalid, terminate build... "
    148148        exit 1 ;;
    149149  esac
     
    151151  [[ "${BLFS_TOOL}" = "y" ]] && copy_blfs_deps_scripts
    152152
    153   echo " ...OK"
     153  echo "done"
    154154
    155155  # Make the scripts executable.
     
    170170  # Create the packages file. We need it for proper Makefile creation
    171171  rm -f pkg_tarball_list
    172   echo -n "Creating <${PROGNAME}> list of tarball names for $BOOK $ARCH"
     172  echo -n "Creating <${PROGNAME}> list of tarball names for $BOOK"
     173  if [ ! -z $ARCH ] ; then echo -n " $ARCH" ; fi
     174  echo -n "... "
    173175  case ${PROGNAME} in
    174176    clfs | clfs2 | clfs3 )
     
    204206  fi
    205207
    206   echo " ...OK"
     208  echo "done"
    207209
    208210}
Note: See TracChangeset for help on using the changeset viewer.