Changeset 70a223e


Ignore:
Timestamp:
11/16/2005 10:39:12 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
96b9b69
Parents:
1a17f94
Message:

Making the stripping phases optional.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • jhalfs

    r1a17f94 r70a223e  
    5151                                also disables the build of TCL, Expect
    5252                                and DejaGNU
     53
     54  --no-strip                    don't run the strip command on both the
     55                                temporary system and the final system
    5356
    5457  --timezone TIMEZONE           set TIMEZONE as the local timezone. If not
     
    360363    fi
    361364
     365    # Test if the stripping phase must be skipped
     366    if [ "$STRIP" = "0" ] && [[ `_IS_ $i stripping` ]] ; then
     367      continue
     368    fi
     369
    362370    # First append each name of the script files to a list (this will become
    363371    # the names of the targets in the Makefile
     
    514522    if [[ `_IS_ $i chroot` ]] ; then
    515523       continue
     524    fi
     525
     526    # Test if the stripping phase must be skipped
     527    if [ "$STRIP" = "0" ] && [[ `_IS_ $i stripping` ]] ; then
     528      continue
    516529    fi
    517530
     
    936949    --no-toolchain-test )       TOOLCHAINTEST=0 ;;
    937950
     951    --no-strip )        STRIP=0 ;;
     952
    938953    --no-vim-lang )     VIMLANG=0 ;;
    939954   
  • jhalfs.conf

    r1a17f94 r70a223e  
    2323#--- Run the toolchain tests  0(no)/1(yes)
    2424TOOLCHAINTEST=1
     25
     26#--- Run the stripping phases  0(no)/1(yes)
     27STRIP=1
    2528
    2629#--- page definition for groff letter/A4
Note: See TracChangeset for help on using the changeset viewer.