Changeset 2095 for trunk/bootstrap
- Timestamp:
- Nov 4, 2009, 8:29:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootstrap
r1797 r2095 27 27 # configure program. 28 28 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} 29 me=bootstrap 30 verbose=no 31 # parse options 32 while 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; 38 done 39 if test "x$verbose" = "xno"; then 40 exec >& /dev/null 36 41 fi 37 LIBTOOLIZE_OPTIONS=$libtoolize_options autoreconf --install --symlink --force $@ 38 42 cmd="autoreconf --install --symlink --force --verbose"; 43 echo "$me: running: $cmd"; 44 exec $cmd;
Note: See TracChangeset
for help on using the changeset viewer.