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:
@ -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
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user