From: Gary V. Vaughan Date: Sun, 11 Dec 2011 11:31:56 +0000 (+0700) Subject: libtoolize: improve verbose mode output. X-Git-Tag: v2.4.2.418~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7039315a8c240196bd75552890ad7f25ab495a17;p=thirdparty%2Flibtool.git libtoolize: improve verbose mode output. * libtoolize (func_require_seen_ltdl) (func_require_seen_libtool): Output success message in verbose mode. Signed-off-by: Gary V. Vaughan --- diff --git a/libtoolize.m4sh b/libtoolize.m4sh index 624fd56f9..8eb4f1bb0 100644 --- a/libtoolize.m4sh +++ b/libtoolize.m4sh @@ -1716,6 +1716,8 @@ func_require_seen_ltdl () fi test -n "$seen_ltdl" || seen_ltdl=false + $seen_ltdl && func_verbose "found LTDL_INIT invocation" + require_seen_ltdl=: } @@ -1737,6 +1739,8 @@ func_require_seen_libtool () fi test -n "$seen_libtool" || seen_libtool=false + $seen_libtool && func_verbose "found LT_INIT invocation" + require_seen_libtool=: }