diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-05-07 16:32:40 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-05-07 16:32:40 +0000 |
commit | 0423be06b50eb78eba3352f21d4bd407ccbccce9 (patch) | |
tree | d5dcf14c33ae2198c1e079d12226a30224cfe617 /pear | |
parent | c018b83003b6a9f932efca889a123626c4de24d2 (diff) | |
download | php-git-0423be06b50eb78eba3352f21d4bd407ccbccce9.tar.gz |
Fixed bug #37348 (make PEAR install ignore open_basedir).
Diffstat (limited to 'pear')
-rw-r--r-- | pear/Makefile.frag | 2 |
1 files changed, 1 insertions, 1 deletions
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)" |