Mailing List Archive

cvs commit: modperl Makefile.PL
rse 98/06/14 07:21:17

Modified: . Makefile.PL
Log:
Make sure "make install" works correctly (i.e. runs apxs_install target) under
USE_APXS=1. This was broken because USE_APXS=1 forced NO_HTTPD=1 and thus this
if-construct failed.

Revision Changes Path
1.50 +1 -1 modperl/Makefile.PL

Index: Makefile.PL
===================================================================
RCS file: /export/home/cvs/modperl/Makefile.PL,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- Makefile.PL 1998/06/14 13:31:51 1.49
+++ Makefile.PL 1998/06/14 14:21:17 1.50
@@ -984,7 +984,7 @@
$add = "apaci_install";
}
}
- if($add and !$NO_HTTPD and !$PREP_HTTPD) {
+ if($add and (!$NO_HTTPD and !$PREP_HTTPD) or $USE_APXS) {
$string =~ s/(pure_install\s+)(.*)/$1 $add $2/;
}
return $string;