Changeset 4612459 for master.sh


Ignore:
Timestamp:
04/09/2006 10:27:06 AM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
6608a67
Parents:
e65a92f
Message:

Adding farce to config options.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • master.sh

    re65a92f r4612459  
    9797
    9898###################################
    99 ###             MAIN            ###
     99###          MAIN               ###
    100100###################################
    101101
     
    215215
    216216    # Common options for LFS, CLFS and HLFS
    217     --do-ICA )              RUN_ICA=1    ;;
     217    --comparasion | -C )
     218      test $# = 1 && eval "$exit_missing_arg"
     219      shift
     220      case $PROGNAME in
     221        ICA)              RUN_ICA=1
     222                        RUN_FARCE=0
     223        ;;
     224        farce)            RUN_ICA=0
     225                        RUN_FARCE=1
     226        ;;
     227        both)             RUN_ICA=1
     228                        RUN_FARCE=1
     229        *)
     230          echo -e "\n$1 is an unknown analisys method."
     231          exit 1
     232          ;;
     233      esac
     234      ;;
    218235
    219236    --fstab | -F )
     
    462479if [[ "$PWD" != "$JHALFSDIR" ]]; then
    463480  cp $COMMON_DIR/makefile-functions $JHALFSDIR/
    464   if [[ "$RUN_ICA" != "0" ]]; then
    465     cp $COMMON_DIR/do_ica_{prep,work} $JHALFSDIR/
     481  if [[ "$RUN_ICA" = "1" ]] || [[ "$RUN_FARCE" = "1" ]]; then
     482    mkdir $JHALFSDIR/extras
     483    cp extras/* $JHALFSDIR/extras
    466484  fi
    467485  if [[ -n "$FILES" ]]; then
Note: See TracChangeset for help on using the changeset viewer.