This is no valid shell syntax:
authorMartin Baulig <martin@src.gnome.org>
Tue, 15 Dec 1998 18:23:20 +0000 (18:23 +0000)
committerMartin Baulig <martin@src.gnome.org>
Tue, 15 Dec 1998 18:23:20 +0000 (18:23 +0000)
commit94c6a33adeb5e1ccf91ad7d3d56cba8cfcbbe81d
tree46173ca16279bfec38ee48bfa7307fb9e1acfb61
parentd98c425676cbd0eca9580eace93a761d621af108
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 ...
glib.m4