diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2004-12-12 11:03:33 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2004-12-12 11:03:33 +0000 |
commit | 9b81fff133f04f94629b796b8100004939760e4f (patch) | |
tree | f0ff181e83479bf6ca6227c679c036404d7733d9 /lang/php | |
parent | 1c217a3f540b77b6712ea23be7530f6e87815a1a (diff) | |
download | pkgsrc-9b81fff133f04f94629b796b8100004939760e4f.tar.gz |
completely ignore system php.ini for all pear-related operations; this
is necessary to avoid being subject to e.g. open_basedir or safe_mode settings
Diffstat (limited to 'lang/php')
-rw-r--r-- | lang/php/pear.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/php/pear.mk b/lang/php/pear.mk index 505734d64ea..467b855a6d7 100644 --- a/lang/php/pear.mk +++ b/lang/php/pear.mk @@ -1,4 +1,4 @@ -# $NetBSD: pear.mk,v 1.4 2004/12/12 09:41:14 jdolecek Exp $ +# $NetBSD: pear.mk,v 1.5 2004/12/12 11:03:33 jdolecek Exp $ # # This Makefile fragment is intended to be included by packages that build # and install pear packages. @@ -43,7 +43,7 @@ PEAR_GENERATE_PLIST= \ ${ECHO} "@comment The following lines are automatically generated"; \ PEAR_LIB="${PEAR_LIB}" WRKSRC="${WRKSRC}" \ PEAR_DIRRM_BASEDIR="${PEAR_DIRRM_BASEDIR}" \ - ${PREFIX}/bin/php ${PKGDIR}/../../lang/php/pear_plist.php; + ${PREFIX}/bin/php -C -n ${PKGDIR}/../../lang/php/pear_plist.php; GENERATE_PLIST+= ${PEAR_GENERATE_PLIST} NO_BUILD= # defined |