From 9d679019f76661c344a852c197c451e052cf3257 Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Mon, 28 Jan 2008 07:34:25 +0000 Subject: [PATCH] * libtoolize.m4sh (func_check_macros): Correct typo with '$opt_quiet ||' where '$opt_quiet &&' that was preventing func_check_macros from running! --- ChangeLog | 4 ++++ libtoolize.m4sh | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1f4ed5a1..dda0b3b9 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 31c3d047..ffd73ae0 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