diff options
author | Greg Beaver <cellog@php.net> | 2006-02-08 01:12:12 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2006-02-08 01:12:12 +0000 |
commit | 39a4a46ae48720d2e3841d363cca65cd0ab374aa (patch) | |
tree | 6284699484d067ed3819bbd959de2ce79ff7ac17 | |
parent | 0a6b074034efa9ef2a82c4a3b704f5fbccaa3e59 (diff) | |
download | php-git-39a4a46ae48720d2e3841d363cca65cd0ab374aa.tar.gz |
MFB fix Bug #36001: make install fails when --enable-memory-limit used
-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 c86d062ef1..7c63801ca8 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 -ddetect_unicode=0 +PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0 -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)" |