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~168^2~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c6e33197e36463cb7fcf5d575a53c3f414ec4ff;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 2f36bcb1c..4fed5f9e4 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=: }