From: Gary V. Vaughan Date: Mon, 28 Jan 2008 07:34:25 +0000 (+0000) Subject: * libtoolize.m4sh (func_check_macros): Correct typo with X-Git-Tag: release-2-1b~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d679019f76661c344a852c197c451e052cf3257;p=thirdparty%2Flibtool.git * libtoolize.m4sh (func_check_macros): Correct typo with '$opt_quiet ||' where '$opt_quiet &&' that was preventing func_check_macros from running! --- diff --git a/ChangeLog b/ChangeLog index 1f4ed5a11..dda0b3b9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2008-01-28 Gary V. Vaughan + * 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 diff --git a/libtoolize.m4sh b/libtoolize.m4sh index 31c3d047c..ffd73ae03 100644 --- a/libtoolize.m4sh +++ b/libtoolize.m4sh @@ -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