]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtoolize.m4sh (func_check_macros): Correct typo with
authorGary V. Vaughan <gary@gnu.org>
Mon, 28 Jan 2008 07:34:25 +0000 (07:34 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 28 Jan 2008 07:34:25 +0000 (07:34 +0000)
'$opt_quiet ||' where '$opt_quiet &&' that was preventing
func_check_macros from running!

ChangeLog
libtoolize.m4sh

index 1f4ed5a1166dab1eecb3fde3a38721440be0e31c..dda0b3b9c11b8cc6c380e481ad76e613b94b605b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2008-01-28  Gary V. Vaughan  <gary@gnu.org>
 
+       * libtoolize.m4sh (func_check_macros): Correct typo with
+       '$opt_quiet ||' where '$opt_quiet &&' that was preventing
+       func_check_macros from running!
+
        * libtoolize.m4sh: Set opt_ltdl whenever seen_ltdl is set
        so that libtoolize behaves as though --ltdl was passed even
        if it wasn't as long as LTDL_INIT (or equivalent) was seen
index 31c3d047c566268ecb44e6135d6a392b39cbcbe1..ffd73ae030d5dbc36b17ba0affbb96c18a36d852 100644 (file)
@@ -1139,10 +1139,11 @@ func_nonemptydir_p ()
 func_check_macros ()
 {
     $opt_debug
-    $opt_quiet || return
+    $opt_quiet && return
+    $seen_autoconf || return
+
     ac_config_macro_dir_advised=false
 
-    $seen_autoconf || return
 
     # Suggest modern idioms for storing autoconf macros:
     if test -z "$ac_macrodir$ltdldir"; then