From 7039315a8c240196bd75552890ad7f25ab495a17 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Sun, 11 Dec 2011 18:31:56 +0700 Subject: [PATCH] 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 --- libtoolize.m4sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libtoolize.m4sh b/libtoolize.m4sh index 624fd56f..8eb4f1bb 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=: }