mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-27 12:39:52 +01:00
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:
2
glib.m4
2
glib.m4
@@ -29,7 +29,7 @@ AC_ARG_ENABLE(glibtest, [ --disable-glibtest Do not try to compile and ru
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for module in $4 ; do
|
for module in . $4 ; do
|
||||||
case "$module" in
|
case "$module" in
|
||||||
gmodule)
|
gmodule)
|
||||||
glib_config_args="$glib_config_args gmodule"
|
glib_config_args="$glib_config_args gmodule"
|
||||||
|
|||||||
Reference in New Issue
Block a user