1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: libconfig-apacheformat-perl/ApacheFormat.pm
===================================================================
--- libconfig-apacheformat-perl.orig/ApacheFormat.pm 2008-03-02 15:33:54.000000000 +0000
+++ libconfig-apacheformat-perl/ApacheFormat.pm 2008-03-02 15:34:31.000000000 +0000
@@ -599,6 +599,8 @@
"line $$line_num: $!");
@files = map { "$f/$_" } sort grep { -f "$f/$_" } readdir INCD;
closedir(INCD);
+ } elsif ($f =~ /\*/) { # Apache file glob
+ @files = glob $f;
} else {
@files = $f;
}
|