gozer 2004/09/18 16:01:17
Modified: . Makefile.PL Log: For static build, mod_perl.a needs to be built before we can compile httpd. Add the correct dependency to the Makefile to avoid breaking -j builds Revision Changes Path 1.161 +1 -1 modperl-2.0/Makefile.PL Index: Makefile.PL =================================================================== RCS file: /home/cvs/modperl-2.0/Makefile.PL,v retrieving revision 1.160 retrieving revision 1.161 diff -u -r1.160 -r1.161 --- Makefile.PL 18 Sep 2004 22:52:09 -0000 1.160 +++ Makefile.PL 18 Sep 2004 23:01:17 -0000 1.161 @@ -540,7 +540,7 @@ if ($build->should_build_apache) { ModPerl::MM::add_dep(\$string, pure_all => 'ap_build'); - $string .= qq[\nap_build:\n\tcd "$build->{MP_AP_PREFIX}" && make\n]; + $string .= qq[\nap_build: modperl_lib\n\tcd "$build->{MP_AP_PREFIX}" && make\n]; } ModPerl::MM::add_dep(\$string, pure_all => 'modperl_lib');