diff options
author | tron <tron> | 2000-03-27 08:54:53 +0000 |
---|---|---|
committer | tron <tron> | 2000-03-27 08:54:53 +0000 |
commit | f1130fdf4bd7b3609c06956ac346a461f842aef1 (patch) | |
tree | 511618ca7cff95a74e9dfdad946115bd53879987 /www | |
parent | 47f024cc8458376669c5a4a8342aa9ed8fee6f2b (diff) | |
download | pkgsrc-f1130fdf4bd7b3609c06956ac346a461f842aef1.tar.gz |
Adapt to new handling of "${CONFIGURE}".
Diffstat (limited to 'www')
-rw-r--r-- | www/apache6/Makefile | 6 | ||||
-rw-r--r-- | www/w3m/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/www/apache6/Makefile b/www/apache6/Makefile index e824f3e02c2..640e767f344 100644 --- a/www/apache6/Makefile +++ b/www/apache6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2000/02/22 17:43:23 veego Exp $ +# $NetBSD: Makefile,v 1.14 2000/03/27 08:55:00 tron Exp $ # # The fourth number in the PKGNAME version indicates a NetBSD pkg revision # (to indicate changes in the shipped third party patches such as the mod_ssl @@ -44,7 +44,7 @@ CONFIGURE_ARGS+= --prefix=${PREFIX} --libexecdir=${PREFIX}/lib/httpd \ --disable-module=auth_dbm \ --with-perl=${PREFIX}/bin/perl # --enable-rule=EAPI --disable-module=ssl -CONFIGURE_SCRIPT= configure.v6 +CONFIGURE_SCRIPT= ${WRKSRC}/configure.v6 CONFIGURE_ENV+= OPTIM="${OPTIM}" BUILD_DEFS+= USE_INET6 @@ -99,7 +99,7 @@ BUILD_DEFS+= APACHE_PERF_TUNING APACHE_SUEXEC USE_INET6 post-patch: @${FIND} ${WRKSRC}/htdocs -name '*.orig' | xargs ${RM} -f - @${CHMOD} +x ${WRKSRC}/${CONFIGURE_SCRIPT} + @${CHMOD} +x ${CONFIGURE_SCRIPT} post-build: ${SED} s#@PREFIX@#${PREFIX}#g <${FILESDIR}/apache.sh \ diff --git a/www/w3m/Makefile b/www/w3m/Makefile index f6aded268f5..a8c4fe0bdbf 100644 --- a/www/w3m/Makefile +++ b/www/w3m/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2000/03/16 11:19:16 pooka Exp $ +# $NetBSD: Makefile,v 1.7 2000/03/27 08:55:00 tron Exp $ DISTNAME= w3m-0.1.6 CATEGORIES= www @@ -65,7 +65,7 @@ do-configure: @yes '' | (cd ${WRKSRC} && CC="${CC}" ac_cv_path_CC="${CC}" \ INSTALL="${INSTALL_SCRIPT}" \ CFLAGS="${CFLAGS}" INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ - ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) + ${CONFIGURE_ENV} ${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) pre-build: @(cd ${WRKSRC}; \ |