diff options
author | obache <obache@pkgsrc.org> | 2011-01-12 08:11:49 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-01-12 08:11:49 +0000 |
commit | 37a9d659ccb2d0bf13889a20b210c555657df110 (patch) | |
tree | 555bf6a176c79636ba41476b4dea757ac072b9e1 /lang | |
parent | 40c40fed76c7853bb76b7072b21ef7378dc3ebce (diff) | |
download | pkgsrc-37a9d659ccb2d0bf13889a20b210c555657df110.tar.gz |
prevent php errors/warnings from being recorded as part of generated PLIST.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/php/pear.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/php/pear.mk b/lang/php/pear.mk index 3acff4b245c..af87023c829 100644 --- a/lang/php/pear.mk +++ b/lang/php/pear.mk @@ -1,4 +1,4 @@ -# $NetBSD: pear.mk,v 1.20 2010/08/29 06:08:07 obache Exp $ +# $NetBSD: pear.mk,v 1.21 2011/01/12 08:11:49 obache Exp $ # # This Makefile fragment is intended to be included by packages that build # and install pear packages. @@ -43,6 +43,7 @@ PEAR_GENERATE_PLIST= \ ${SETENV} PEAR_LIB=${PEAR_LIB:Q} WRKSRC=${WRKSRC:Q} \ ${INSTALL_ENV} PREFIX=${PREFIX:Q} \ ${PREFIX}/bin/php -d include_path=".:${PREFIX}/lib/php" \ + -d log_errors=On -d display_errors=Off \ -C -n ${PKGDIR}/../../lang/php/pear_plist.php; GENERATE_PLIST+= ${PEAR_GENERATE_PLIST} |