diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-11-05 17:52:38 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-11-05 17:52:38 +0000 |
commit | 7d95e4f164796b3a85389e031c4a98fc44c5675f (patch) | |
tree | 81043297e23d4ff64d57630ffd648ac35857a201 /www/apache2/Makefile | |
parent | 605f49a1549db3338a7f755854ddbd9e8d43201e (diff) | |
download | pkgsrc-7d95e4f164796b3a85389e031c4a98fc44c5675f.tar.gz |
Fix the path to libtool on build so that it gets set correctly in the
installed config_vars.mk. Any package pulling in config_vars.mk will
now find libtool.
PKGREVISION++
ok'ed tron@
Diffstat (limited to 'www/apache2/Makefile')
-rw-r--r-- | www/apache2/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/apache2/Makefile b/www/apache2/Makefile index 53074f386df..afcb6b1b298 100644 --- a/www/apache2/Makefile +++ b/www/apache2/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.105 2006/08/30 06:16:27 rillig Exp $ +# $NetBSD: Makefile,v 1.106 2006/11/05 17:52:38 adrianp Exp $ .include "Makefile.common" PKGNAME= apache-${APACHE_VERSION} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= www HOMEPAGE= http://httpd.apache.org/ @@ -137,7 +137,7 @@ SUBST_MESSAGE.paths= Fixing paths. SUBST_CLASSES+= apr-lt SUBST_STAGE.apr-lt= post-configure SUBST_FILES.apr-lt= build/config_vars.mk -SUBST_SED.apr-lt= -e 's|^\(LIBTOOL =\) [^ ]*|\1 $$(SHELL) $$(top_builddir)/libtool|g' +SUBST_SED.apr-lt= -e 's|^\(LIBTOOL =\) [^ ]*|\1 $$(SHELL) $$(top_builddir)/build/libtool|g' SUBST_MESSAGE.apr-lt= Fixing libtool references. SUBST_CLASSES+= confs @@ -184,7 +184,7 @@ CONFIGURE_ARGS+= ${AP_CFG_ARGS.${ap_mod}} .endfor post-extract: - ${TOUCH} ${WRKSRC}/libtool + ${TOUCH} ${WRKSRC}/build/libtool post-build: ${SED} "s#@PKG_SYSCONFDIR@#${PKG_SYSCONFDIR}#g" \ |