Changeset 2ee1d11 for jhalfs


Ignore:
Timestamp:
10/07/2006 07:14:47 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
42e1b38
Parents:
f5791f0
Message:

Merged r3147:3173 from trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • jhalfs

    rf5791f0 r2ee1d11  
    9191[[ $VERBOSITY > 0 ]] && echo "OK"
    9292
    93       #--- Envars not sourced from configuration
    94 declare -r SVN="svn://svn.linuxfromscratch.org"
    95 declare -r LOG=000-masterscript.log
    96 
    9793# These are boolean vars generated from Config.in.
    9894# ISSUE: If a boolean parameter is not set <true> that
     
    130126    LFSVRS=${BRANCH_ID}
    131127    TREE=branches/${BRANCH_ID#branch-}/BOOK
     128    ;;
     129  2.4-branch )
     130    LFSVRS=${BRANCH_ID}
     131    TREE=branches/2.4-branch
    132132    ;;
    133133  * )
     
    178178  TIDY_PATCH_URL="http://www.linuxfromscratch.org/patches/blfs/svn/${TIDY_PATCH}"
    179179  TIDY_PATCH_MD5="82f67f7af58fc2c945b3410ae655cc1a"
     180    # tidy docs
     181  TIDY_DOCS="tidy_docs_051020.tgz"
     182  TIDY_DOCS_URL="http://tidy.sourceforge.net/docs/${TIDY_DOCS}"
     183  TIDY_DOCS_MD5="86de2f198e57399c063d2567b2a25628"
    180184    # unzip
    181185  UNZIP_PKG="unzip552.tar.gz"
     
    224228fi
    225229
     230#--- Envars not sourced from configuration
     231case $PROGNAME in
     232  clfs* ) declare -r SVN="http://svn.cross-lfs.org/svn/repos" ;;
     233      * ) declare -r SVN="svn://svn.linuxfromscratch.org" ;;
     234esac
     235declare -r LOG=000-masterscript.log
     236  # Needed to can fetch BLFS book sources when building CLFS
     237declare -r SVN_2="svn://svn.linuxfromscratch.org"
     238
    226239# Set true internal variables
    227240COMMON_DIR="common"
     
    269282read ANSWER
    270283if [ x$ANSWER != "xyes" ] ; then
    271   echo "${nl_}Fix the configuration options and rerun the script.${nl_}"
     284  echo "${nl_}Rerun make to fix the configuration options.${nl_}"
    272285  exit 1
    273286fi
     
    384397  if [[ ! -d ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} ]] ; then
    385398    mkdir -p ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML}
    386     svn co $SVN/BLFS/$BLFS_TREE ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} >>$LOGDIR/$LOG 2>&1
     399    svn co $SVN_2/BLFS/$BLFS_TREE ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} >>$LOGDIR/$LOG 2>&1
    387400  else
    388401    pushd ${BUILDDIR}${BLFS_ROOT}/${BLFS_XML} 1> /dev/null
Note: See TracChangeset for help on using the changeset viewer.