Changeset 398a037 for master.sh


Ignore:
Timestamp:
08/11/2006 03:34:10 AM (18 years ago)
Author:
George Boudreau <georgeb@…>
Branches:
experimental
Children:
6a9d41e
Parents:
755cd36
Message:

Mods to most files to allow for reduction of internal functions and reduction in the size of the generated makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • master.sh

    r755cd36 r398a037  
    7070
    7171if [[ -e using_menuconfig ]]; then
     72  [[ $VERBOSITY > 0 ]] && echo -n "Loading config params from <configuration>..."
    7273  source configuration
    73 
     74  [[ $? > 0 ]] && echo "file:configuration did not load.." && exit 1
     75  [[ $VERBOSITY > 0 ]] && echo "OK"
    7476
    7577        #--- Working directories
     
    8486  FARCELOGDIR=$LOGDIR/farce
    8587
    86   [[ ! -z ${BRANCH_ID} ]] &&
    87   case $BRANCH_ID in
    88    dev* | SVN | trunk )
    89     case $PROGNAME in
    90       clfs2 ) TREE=branches/clfs-2.0/BOOK ;;
    91            *) TREE=trunk/BOOK ;;
     88  if [[ ! -z ${BRANCH_ID} ]]; then
     89    case $BRANCH_ID in
     90     dev* | SVN | trunk )
     91      case $PROGNAME in
     92        clfs2 ) TREE=branches/clfs-2.0/BOOK ;;
     93             *) TREE=trunk/BOOK ;;
     94      esac
     95      LFSVRS=development
     96      ;;
     97    branch-* )
     98       LFSVRS=${BRANCH_ID}
     99       TREE=branches/${BRANCH_ID#branch-}/BOOK
     100      ;;
     101    * )
     102      case $PROGNAME in
     103        lfs | hlfs )
     104           LFSVRS=${BRANCH_ID}
     105          TREE=tags/${BRANCH_ID}/BOOK
     106         ;;
     107        clfs | clfs2 )
     108           LFSVRS=${BRANCH_ID}
     109           TREE=tags/${BRANCH_ID}
     110         ;;
     111      esac
     112      ;;
    92113    esac
    93     LFSVRS=development
    94     ;;
    95   branch-* )
    96      LFSVRS=${BRANCH_ID}
    97      TREE=branches/${BRANCH_ID#branch-}/BOOK
    98     ;;
    99   * )
    100     case $PROGNAME in
    101       lfs | hlfs )
    102          LFSVRS=${BRANCH_ID}
    103          TREE=tags/${BRANCH_ID}/BOOK
    104        ;;
    105       clfs | clfs2 )
    106          LFSVRS=${BRANCH_ID}
    107          TREE=tags/${BRANCH_ID}
    108        ;;
    109     esac
    110     ;;
    111   esac
     114  fi
    112115fi
    113116
Note: See TracChangeset for help on using the changeset viewer.