We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b815f7 commit a48a24aCopy full SHA for a48a24a
Makefile.PL
@@ -119,10 +119,12 @@ sub configure {
119
# mod_perl test suite relies on having Apache-Test bundled with
120
# the mod_perl source, since any pre-installed version may not do
121
# the right thing
122
- unless (-d "Apache-Test") {
123
- error "Can't find a sub-directory Apache-Test. " .
124
- "Make sure that you are using a complete source distribution";
125
- exit 1;
+ foreach my $sub_pkg (qw(Apache-Test Apache-SizeLimit)) {
+ unless (-d $sub_pkg) {
+ error "Can't find a sub-directory $sub_pkg. " .
+ "Make sure that you are using a complete source distribution";
126
+ exit 1;
127
+ }
128
}
129
130
set_modperl_version();
0 commit comments