2005-10-17 Clifford Wolf (tiny change) Stepan Kasal * aclocal.in (parse_arguments): Added wildcard support to the dirlist parser. Index: aclocal.in =================================================================== RCS file: /cvsroot/automake/automake/aclocal.in,v retrieving revision 1.133 diff -u -r1.133 aclocal.in --- aclocal.in 9 Jul 2005 09:30:31 -0000 1.133 +++ aclocal.in 17 Oct 2005 15:04:05 -0000 @@ -938,7 +938,10 @@ # strip off newlines and end-of-line comments s/\s*\#.*$//; chomp; - push (@system_includes, $_) if -d $_; + foreach my $dir (glob) + { + push (@system_includes, $dir) if -d $dir; + } } close (DIRLIST); }