diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2006-03-21 19:09:21 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2006-03-21 19:09:21 +0000 |
commit | 17a8ec366aec5f93d65c9436dd842f1766c7fa04 (patch) | |
tree | 748e7f9db807ef7c1fcff1d791eb840bf9947ef0 /aclocal.in | |
parent | b9df3285f2c32960ebeb979bbc6d76ea3e438ba4 (diff) | |
download | automake-17a8ec366aec5f93d65c9436dd842f1766c7fa04.tar.gz |
* aclocal.in (parse_arguments): Added wildcard support to the
dirlist parser.
* doc/automake.texi (Macro search path): Document it.
* tests/dirlist2.test: New test.
* m4/dirlist, tests/Makefile.am: Adjust.
* NEWS, THANKS: Update.
Diffstat (limited to 'aclocal.in')
-rw-r--r-- | aclocal.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/aclocal.in b/aclocal.in index a05ba72a6..2e9bb84f4 100644 --- a/aclocal.in +++ b/aclocal.in @@ -942,7 +942,10 @@ sub parse_arguments () # 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); } |