Changeset 8ab950f for master.sh


Ignore:
Timestamp:
03/16/2006 06:50:00 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
c6225224
Parents:
a346167
Message:

Addapted command line switches to current -T behavoir.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • master.sh

    ra346167 r8ab950f  
    125125          exit 0
    126126          ;;
    127         alpha*)
    128           LFSVRS=alphabetical
    129           ;;
     127        alpha*)
     128          LFSVRS=alphabetical
     129          ;;
    130130        * )
    131131          echo "$1 is an unsupported version at this time."
     
    167167      ;;
    168168
    169     --testsuites | -T )         TEST=1    ;;
     169    --testsuites | -T )
     170      test $# = 1 && eval "$exit_missing_arg"
     171      shift
     172      case $1 in
     173        0 | 1 | 2 | 3 )
     174          TEST=$1
     175          ;;
     176        * )
     177          echo -e "\n$1 isn't a valid testsuites level value."
     178          echo -e "You must to use 0, 1, 2, or 3.\n"
     179          exit 1
     180          ;;
     181      esac
     182      ;;
     183
    170184    --get-packages | -P )       HPKG=1    ;;
    171185    --run-make | -M )           RUNMAKE=1 ;;
    172     --no-toolchain-test )       TOOLCHAINTEST=0 ;;
    173186    --no-strip )        STRIP=0   ;;
    174187    --no-vim-lang )     VIMLANG=0 ;;
Note: See TracChangeset for help on using the changeset viewer.