diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-06-11 09:55:35 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-06-11 09:55:35 +0000 |
commit | e9f2fe72ad04f329e5b43dfc0a906112da2d9f29 (patch) | |
tree | 220e0964eb6ed240a7edb7f8d81d49d5e8eede29 /www/p5-libapreq2/files/patch-glue::Makefile.in | |
parent | - Unbreak (diff) |
Add p5-libapreq2 2.02r02, generic Apache2 Request Library.
PR: ports/67591
Submitted by: Autrijus Tang autrijus_at_autrijus.org
Notes
Notes:
svn path=/head/; revision=111264
Diffstat (limited to 'www/p5-libapreq2/files/patch-glue::Makefile.in')
-rw-r--r-- | www/p5-libapreq2/files/patch-glue::Makefile.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/www/p5-libapreq2/files/patch-glue::Makefile.in b/www/p5-libapreq2/files/patch-glue::Makefile.in new file mode 100644 index 000000000000..3378bf119c39 --- /dev/null +++ b/www/p5-libapreq2/files/patch-glue::Makefile.in @@ -0,0 +1,23 @@ +--- glue/Makefile.in.orig Sat Jun 5 11:38:26 2004 ++++ glue/Makefile.in Sat Jun 5 11:38:36 2004 +@@ -251,16 +251,16 @@ + cd perl; @PERL@ Makefile.PL -apxs @APACHE2_APXS@ + + perl_glue: perl/Makefile +- cd perl; make ++ cd perl; $(MAKE) + + perl_test: perl/Makefile +- cd perl; make test ++ cd perl; $(MAKE) test + + perl_install: +- cd perl; make install ++ cd perl; $(MAKE) install + + perl_clean: +- cd perl; make clean ++ cd perl; $(MAKE) clean + + @BUILD_PERL_GLUE_TRUE@all-local: perl_glue + |