diff options
author | wiz <wiz@pkgsrc.org> | 2002-10-05 10:54:12 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-10-05 10:54:12 +0000 |
commit | 933435a1e67ab6c6fe6f35dc6c65a4b4d05a4bf2 (patch) | |
tree | dd039e704b69c0df6f7b2e53f31c64b0053fb92c /www/php4 | |
parent | 83ca76184c70be978f783078408fe834ed2048e4 (diff) | |
download | pkgsrc-933435a1e67ab6c6fe6f35dc6c65a4b4d05a4bf2.tar.gz |
Pass in some env. variables for phpize. Reported missing by lukem.
Diffstat (limited to 'www/php4')
-rw-r--r-- | www/php4/Makefile.module | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/php4/Makefile.module b/www/php4/Makefile.module index 56b26ccdc7d..b552cb44286 100644 --- a/www/php4/Makefile.module +++ b/www/php4/Makefile.module @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.module,v 1.19 2002/10/02 23:48:07 wiz Exp $ +# $NetBSD: Makefile.module,v 1.20 2002/10/05 10:54:12 wiz Exp $ # # This Makefile is provided to ease creating PHP4 packages for the extension # modules distributed in the PHP4 sources. @@ -48,7 +48,9 @@ pre-configure: phpize-module phpize-module: @cookie=${WRKDIR}/.phpize_module_done; \ if [ ! -f $${cookie} ]; then \ - ( cd ${WRKSRC} && ${PHPIZE} ); \ + ( cd ${WRKSRC} && ${SETENV} AUTOCONF=${AUTOCONF} \ + AUTOHEADER=${AUTOHEADER} ACLOCAL=${ACLOCAL} \ + ${PHPIZE} ); \ ${TOUCH} ${TOUCH_FLAGS} $${cookie}; \ fi |