]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* m4/ltsugar.m4 (lt_combine, _lt_combine): Fix default separator.
authorStepan Kasal <kasal@ucw.cz>
Mon, 27 Jun 2005 14:54:09 +0000 (14:54 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Mon, 27 Jun 2005 14:54:09 +0000 (14:54 +0000)
ChangeLog
m4/ltsugar.m4

index 2895e7ecf86c7d578ec967d99cf13037749b8f15..19d4ffd8921dd9d982eab6401e0e730aa266f61a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-06-27  Stepan Kasal  <kasal@ucw.cz>
 
+       * m4/ltsugar.m4 (lt_combine, _lt_combine): Fix default separator.
+
        * m4/ltoptions.m4 (_LT_UNLESS_OPTIONS, _LT_SET_OPTIONS): Replace
        AC_FOREACH by a combination of m4_foreach/m4_split/m4_normalize.
 
@@ -30,6 +32,7 @@
        m4_car/m4_cdr with the fixed semantics of Autoconf-2.59c CVS, in
        order to work with 2.59.
        (lt_combine): Use it.
+       Reported by Christoph Egger <Christoph_Egger@gmx.de>.
 
 2005-06-11  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>,
            Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
index 69a131e348c3c67dcf2b17f7ae2da5d88caaea74..bca66f06f60c6331f9da422fddd6e6106f48f54c 100644 (file)
@@ -52,12 +52,12 @@ m4_define([lt_cdr],
 # has the form PREFIXmINFIXSUFFIXn.
 m4_define([lt_combine],
 [m4_if([$2], [], [],
-       [lt_join(m4_quote(m4_default([$1], [])),
+       [lt_join(m4_quote(m4_default([$1], [[, ]])),
                _$0([$1], lt_car($2)[$3], m4_shiftn(3, $@)),
                $0([$1], lt_cdr($2), m4_shiftn(2, $@)))])])
 m4_define([_lt_combine],
 [m4_if([$3], [], [],
-       [lt_join(m4_quote(m4_default([$1], [])),
+       [lt_join(m4_quote(m4_default([$1], [[, ]])),
                [$2$3],
                $0([$1], [$2], m4_shiftn(3, $@)))])[]dnl
 ])