Ignore:
Timestamp:
11/09/2021 12:33:49 PM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
f756851
Parents:
610a5c4
git-author:
Pierre Labastie <pierre.labastie@…> (11/09/2021 12:31:53 PM)
git-committer:
Pierre Labastie <pierre.labastie@…> (11/09/2021 12:33:49 PM)
Message:

install-blfs-tools.sh: Minor tidy up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • install-blfs-tools.sh

    r610a5c4 re25788e  
    125125
    126126#*******************************************************************#
    127 [[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_check_version.sh>..."
     127[[ $VERBOSITY > 0 ]] && echo -n "Loading function <func_check_version.sh> ..."
    128128source $COMMON_DIR/libs/func_check_version.sh
    129129[[ $? > 0 ]] && echo " function module did not load.." && exit 2
    130 [[ $VERBOSITY > 0 ]] && echo "OK"
     130[[ $VERBOSITY > 0 ]] && echo " OK"
    131131
    132132[[ $VERBOSITY > 0 ]] && echo "${SD_BORDER}${nl_}"
     
    150150
    151151# Install the files
    152 [[ $VERBOSITY > 0 ]] && echo -n Populating the ${BUILDDIR}${BLFS_ROOT} directory
     152[[ $VERBOSITY > 0 ]] && echo -n "Populating the ${BUILDDIR}${BLFS_ROOT} directory "
    153153[[ ! -d ${BUILDDIR}${BLFS_ROOT} ]] && mkdir -pv ${BUILDDIR}${BLFS_ROOT}
    154154rm -rf ${BUILDDIR}${BLFS_ROOT}/*
     
    160160
    161161# Clean-up
    162 [[ $VERBOSITY > 0 ]] && echo Cleaning the ${BUILDDIR}${BLFS_ROOT} directory
     162[[ $VERBOSITY > 0 ]] && echo -n "Cleaning the ${BUILDDIR}${BLFS_ROOT} directory "
    163163# We do not want to keep an old version of the book:
    164164rm -rf ${BUILDDIR}${BLFS_ROOT}/$BLFS_XML
     
    176176[[ $VERBOSITY > 0 ]] && echo "... OK"
    177177
    178 [[ $VERBOSITY > 0 ]] &&
    179 
    180178[[ -z "$BLFS_BOOK" ]] ||
    181179[[ $BLFS_BOOK = $BUILDDIR$BLFS_ROOT/$BLFS_XML ]] || {
    182 echo "Retrieving BLFS working copy (may take some time)" &&
     180[[ $VERBOSITY > 0 ]] && echo -n "Retrieving BLFS working copy (may take some time) "
    183181cp -a $BLFS_BOOK $BUILDDIR$BLFS_ROOT/$BLFS_XML
     182[[ $VERBOSITY > 0 ]] && echo "... OK"
    184183}
    185184
    186185[[ -z "$LFS_BOOK" ]] ||
    187186[[ $LFS_BOOK = $BUILDDIR$BLFS_ROOT/$LFS_XML ]] || {
    188 echo "Retrieving the LFS working copy (may take some time)" &&
     187[[ $VERBOSITY > 0 ]] && echo -n "Retrieving the LFS working copy (may take some time) "
    189188cp -a $LFS_BOOK $BUILDDIR$BLFS_ROOT/$LFS_XML
     189[[ $VERBOSITY > 0 ]] && echo "... OK"
    190190}
    191191
     192[[ $VERBOSITY > 0 ]] && echo "Initializing the BLFS tool directory "
    192193make -j1 -C $BUILDDIR$BLFS_ROOT \
    193194     TRACKING_DIR=$TRACKING_DIR \
Note: See TracChangeset for help on using the changeset viewer.