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
This commit is contained in:
Raja R Harinath
1999-03-10 22:46:20 +00:00
parent 8bfa8af939
commit ed4bc0b947
2 changed files with 8 additions and 1 deletions

View File

@ -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

View File

@ -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)