From: Ilia Alshanetsky Date: Sun, 7 May 2006 16:32:40 +0000 (+0000) Subject: Fixed bug #37348 (make PEAR install ignore open_basedir). X-Git-Tag: php-5.2.0RC1~647 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0423be06b50eb78eba3352f21d4bd407ccbccce9;p=php Fixed bug #37348 (make PEAR install ignore open_basedir). --- diff --git a/NEWS b/NEWS index 917c78efb4..ace2c5a6c7 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2006, PHP 5.2.0 +- Fixed bug #37348 (make PEAR install ignore open_basedir). (Ilia) - Fixed bug #37313 (sigemptyset() used without including ). (jdolecek) - Fixed bug #37244 (Added strict flag to base64_decode() that enforces diff --git a/pear/Makefile.frag b/pear/Makefile.frag index 7c63801ca8..eb8e289cb6 100644 --- a/pear/Makefile.frag +++ b/pear/Makefile.frag @@ -3,7 +3,7 @@ peardir=$(PEAR_INSTALLDIR) # Skip all php.ini files altogether -PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0 -derror_reporting=E_ALL -dmemory_limit=-1 -ddetect_unicode=0 +PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0 -dopen_basedir= -derror_reporting=E_ALL -dmemory_limit=-1 -ddetect_unicode=0 install-pear-installer: $(SAPI_CLI_PATH) @$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(builddir)/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)"