From 3f003e7c7e4c5d8bd9ff4e85c1c2e3de6d95681f Mon Sep 17 00:00:00 2001 From: Raja R Harinath Date: Wed, 10 Mar 1999 22:46:20 +0000 Subject: Applied Bug fix: 1999-03-10 Tomislav Vujec + + * 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 * gnome.m4 (GNOME_INIT): Add a new paramater, which is passed to diff --git a/macros/gnome.m4 b/macros/gnome.m4 index a901e75..2c6fe66 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) -- cgit v1.2.1