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 ...
This commit is contained in:
Martin Baulig 1998-12-15 18:23:20 +00:00
parent d98c425676
commit 94c6a33ade

View File

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