Changeset 2095 for trunk/bootstrap


Ignore:
Timestamp:
Nov 4, 2009, 8:29:00 PM (14 years ago)
Author:
Peter
Message:

make bootstrap silent with libtool 1.x

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootstrap

    r1797 r2095  
    2727# configure program.
    2828
    29 
    30 if test "${LIBTOOLIZE_OPTIONS+set}" != set; then
    31 # make libtoolize silent
    32     libtoolize_options=--quiet
    33 else
    34 # do not modify env var if already set
    35     libtoolize_options=${LIBTOOLIZE_OPTIONS}
     29me=bootstrap
     30verbose=no
     31# parse options
     32while test $# -gt 0; do
     33    case "$1" in
     34  --verbose | -v) verbose=yes;;
     35  *) echo "$me: invalid option '$1'" >& 2 && exit 1;;
     36    esac
     37    shift;
     38done
     39if test "x$verbose" = "xno"; then
     40    exec >& /dev/null
    3641fi
    37 LIBTOOLIZE_OPTIONS=$libtoolize_options autoreconf --install --symlink --force $@
    38 
     42cmd="autoreconf --install --symlink --force --verbose";
     43echo "$me: running: $cmd";
     44exec $cmd;
Note: See TracChangeset for help on using the changeset viewer.