bug-libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

libtool 1.9b: fix excess quoting


From: Andreas Schwab
Subject: libtool 1.9b: fix excess quoting
Date: Sun, 05 Sep 2004 20:52:50 +0200
User-agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux)

The argument of AC_CONFIG_SUBDIRS as used in LT_WITH_LTDL needs to be
evaluated before being passed.

Andreas.

2004-09-05  Andreas Schwab  <address@hidden>

        * m4/ltdl.m4 (LT_WITH_LTDL): Remove excess quoting in argument of
        AC_CONFIG_SUBDIRS.

--- m4/ltdl.m4.~1.18.~  2004-09-05 12:03:13.000000000 +0200
+++ m4/ltdl.m4  2004-09-05 20:12:30.699166477 +0200
@@ -63,7 +63,7 @@ fi
 AC_MSG_CHECKING([whether to use included libltdl])
 AC_MSG_RESULT([$with_included_ltdl])
 
-AC_CONFIG_SUBDIRS([m4_if($#, 1, [$1], [libltdl])])
+AC_CONFIG_SUBDIRS(m4_if($#, 1, [$1], [libltdl]))
 ])# LT_WITH_LTDL
 
 # Old name:

-- 
Andreas Schwab, SuSE Labs, address@hidden
SuSE Linux AG, Maxfeldstraße 5, 90409 Nürnberg, Germany
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."




reply via email to

[Prev in Thread] Current Thread [Next in Thread]