diff options
author | Raja R Harinath <harinath@src.gnome.org> | 1999-03-11 06:46:20 +0800 |
---|---|---|
committer | Raja R Harinath <harinath@src.gnome.org> | 1999-03-11 06:46:20 +0800 |
commit | ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19 (patch) | |
tree | bbc23cede97d8c575d82b2c91ac1505270f9954a | |
parent | 8bfa8af9390fae53b98df15098dd70006ebe3328 (diff) | |
download | gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar.gz gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar.bz2 gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar.lz gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar.xz gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.tar.zst gsoc2013-evolution-ed4bc0b947e0cd9ee61dc741ac394c6cbf4f2e19.zip |
Applied Bug fix:
1999-03-10 Tomislav Vujec <tvujec@carnet.hr
* gnome.m4 (GNOME_INIT_HOOK): Wrapped position parameter in testing
for additional inits. It gets expanded while generating configure,
resulting in an empty parameter list - syntax error in for statement.
svn path=/trunk/; revision=744
-rw-r--r-- | macros/ChangeLog | 6 | ||||
-rw-r--r-- | macros/gnome.m4 | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 01ae071490..07e98f06d7 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,9 @@ +1999-03-10 Tomislav Vujec <tvujec@carnet.hr> + + * gnome.m4 (GNOME_INIT_HOOK): Wrapped position parameter in testing + for additional inits. It gets expanded while generating configure, + resulting in an empty parameter list - syntax error in for statement. + 1999-03-09 Raja R Harinath <harinath@cs.umn.edu> * gnome.m4 (GNOME_INIT): Add a new paramater, which is passed to diff --git a/macros/gnome.m4 b/macros/gnome.m4 index a901e752fa..2c6fe669ef 100644 --- a/macros/gnome.m4 +++ b/macros/gnome.m4 @@ -96,7 +96,8 @@ AC_DEFUN([GNOME_INIT_HOOK],[ fi if test -n "$3"; then - for i in $3; do + n="$3" + for i in $n; do AC_MSG_CHECKING(extra library $i) case $i in applets) |