File: apache_globs.patch

package info (click to toggle)
libconfig-apacheformat-perl 1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 828 kB
  • ctags: 19
  • sloc: perl: 408; makefile: 45
file content (13 lines) | stat: -rw-r--r-- 701 bytes parent folder | download
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;
                     }