From: Ralf Wildenhues Date: Wed, 12 Jan 2005 16:36:33 +0000 (+0000) Subject: * config/ltmain.m4sh: New option `--verbose'/`-v' to enable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05f384058fc2c86de86f9b2a59b3acfcfa654651;p=thirdparty%2Flibtool.git * config/ltmain.m4sh: New option `--verbose'/`-v' to enable override of `--silent'. Verbose is the default behavior. * doc/libtool.texi (Invoking libtool): Document it. --- diff --git a/ChangeLog b/ChangeLog index e651d5f88..4f08aa96f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-01-12 Ralf Wildenhues + * config/ltmain.m4sh: New option `--verbose'/`-v' to enable + override of `--silent'. Verbose is the default behavior. + * doc/libtool.texi (Invoking libtool): Document it. + * m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [linux]: While "parsing" /etc/ld.so.conf, skip comments. Reported by Jens Elkner . diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 11ab83284..a7d01c64f 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -39,6 +39,7 @@ m4_divert_push([SCRIPT])# @configure_input@ # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --tag=TAG use configuration variables from tag TAG +# -v, --verbose print informational messages (default) # --version print version information # -h, --help print short or long help message # @@ -485,6 +486,10 @@ Otherwise, only FILE itself is deleted using RM." show=: ;; + --verbose| -v) preserve_args="$preserve_args $opt" + show="$ECHO" + ;; + --tag) test "$#" -eq 0 && func_missing_arg "$opt" && break preserve_args="$preserve_args $opt $1" func_enable_tag "$1" # tagname is set here diff --git a/doc/libtool.texi b/doc/libtool.texi index 4f14d272a..184dd1a0d 100644 --- a/doc/libtool.texi +++ b/doc/libtool.texi @@ -1176,6 +1176,10 @@ that libtool knows it can safely. @itemx --silent Do not print out any progress or informational messages. +@item -v +@itemx --verbose +Print out progress and informational messages (enabled by default). + @item --version Print libtool version information and exit. @end table