Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'mh/http-urlmatch-cleanup'
[gitweb.git]
/
contrib
/
buildsystems
/
Generators.pm
diff --git
a/contrib/buildsystems/Generators.pm
b/contrib/buildsystems/Generators.pm
index 408ef714b8f0dcd0328dcef0055cc92f7737babb..aa4cbaa2adacb12616a3150b5735ad4634c93124 100644
(file)
--- a/
contrib/buildsystems/Generators.pm
+++ b/
contrib/buildsystems/Generators.pm
@@
-17,7
+17,7
@@
BEGIN
$me = dirname($me);
if (opendir(D,"$me/Generators")) {
foreach my $gen (readdir(D)) {
- next
if ($gen =~ /^\.\.?
$/);
+ next
unless ($gen =~ /\.pm
$/);
require "${me}/Generators/$gen";
$gen =~ s,\.pm,,;
push(@AVAILABLE, $gen);