From: Martin Baulig Date: Tue, 15 Dec 1998 18:23:20 +0000 (+0000) Subject: This is no valid shell syntax: X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=94c6a33adeb5e1ccf91ad7d3d56cba8cfcbbe81d;p=dana%2Fcg-glib.git This is no valid shell syntax: for module in ; do So we add a `.' in front of the $4 to make it look like this: for module in . $4 ; do This works even if $4 is empty ... --- diff --git a/glib.m4 b/glib.m4 index f26ccdc0..3b439dad 100644 --- a/glib.m4 +++ b/glib.m4 @@ -29,7 +29,7 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and ru fi fi - for module in $4 ; do + for module in . $4 ; do case "$module" in gmodule) glib_config_args="$glib_config_args gmodule"