diff options
author | kristerw <kristerw@pkgsrc.org> | 2005-06-25 00:48:26 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2005-06-25 00:48:26 +0000 |
commit | 6f68b57845aec5a5d26d87b565ee940bf595e24e (patch) | |
tree | 9ead0dd57ac73a836dcdb8221ed60be20839e16b | |
parent | 36f8a08e27581f5ed1a7a4fc6acc2e8e1815c6bf (diff) | |
download | pkgsrc-6f68b57845aec5a5d26d87b565ee940bf595e24e.tar.gz |
Change the CONFIGURE_ENV to use the variables users are supposed to set,
rather than the autoconf cache variables.
-rw-r--r-- | net/ncftp2/Makefile | 4 | ||||
-rw-r--r-- | www/bluefish/Makefile | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/net/ncftp2/Makefile b/net/ncftp2/Makefile index 283e9851de0..bfc78d60461 100644 --- a/net/ncftp2/Makefile +++ b/net/ncftp2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2005/06/19 01:21:19 kristerw Exp $ +# $NetBSD: Makefile,v 1.39 2005/06/25 00:52:00 kristerw Exp $ DISTNAME= ncftp-2.4.3 PKGREVISION= 2 @@ -13,7 +13,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-extra-dirs CONFIGURE_ARGS+= --disable-ncurses CONFIGURE_ENV+= ac_cv_lib_intl_strftime=no -CONFIGURE_ENV+= ac_cv_path_GZCAT="${GZCAT}" +CONFIGURE_ENV+= GZCAT="${GZCAT}" USE_TOOLS+= gzcat .include "../../mk/bsd.prefs.mk" diff --git a/www/bluefish/Makefile b/www/bluefish/Makefile index 5d63a75fb15..ca10fc19ade 100644 --- a/www/bluefish/Makefile +++ b/www/bluefish/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2005/06/19 01:35:08 kristerw Exp $ +# $NetBSD: Makefile,v 1.54 2005/06/25 00:48:26 kristerw Exp $ DISTNAME= bluefish-1.0 PKGREVISION= 2 @@ -22,8 +22,8 @@ USE_TOOLS+= find gmake grep USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-icon-path=${PREFIX}/share/pixmaps -CONFIGURE_ENV+= ac_cv_path_EXTERNAL_GREP="${TOOLS_GREP}" -CONFIGURE_ENV+= ac_cv_path_EXTERNAL_FIND="${TOOLS_FIND}" +CONFIGURE_ENV+= EXTERNAL_GREP="${TOOLS_GREP}" +CONFIGURE_ENV+= EXTERNAL_FIND="${TOOLS_FIND}" .include "../../converters/libiconv/buildlink3.mk" .include "../../databases/shared-mime-info/mimedb.mk" |