1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Don't try to regenerate Makefiles at installation time, as this will forget
to link against the internal copy of libapreq2-dev, which will cause problems
when trying to load the module outside Apache.
Author: Steinar H. Gunderson <sesse@debian.org>
Forwarded: not-needed
--- a/glue/Makefile.am
+++ b/glue/Makefile.am
@@ -15,7 +15,6 @@ perl_test: perl/Makefile
cd perl; $(MAKE) test
perl_install:
- cd perl; INSTALL=1 @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@
cd perl; $(MAKE) install
perl_clean:
--- a/glue/Makefile.in
+++ b/glue/Makefile.in
@@ -478,7 +478,6 @@ perl_test: perl/Makefile
cd perl; $(MAKE) test
perl_install:
- cd perl; INSTALL=1 @PERL@ @PERL_OPTS@ Makefile.PL -apxs @APACHE2_APXS@ @MM_OPTS@
cd perl; $(MAKE) install
perl_clean:
|