diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-11-15 13:29:39 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-11-15 13:29:39 +0000 |
commit | a8c6b992b8894763c59276c1142971aa9a314500 (patch) | |
tree | cd160a00c80a2b4c903c85ee4c23432c1ca55241 /pear | |
parent | 55190081694669150d38e760e2e1e498b21478fa (diff) | |
download | php-git-a8c6b992b8894763c59276c1142971aa9a314500.tar.gz |
Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte)
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 492f4e1af5..a8b1d68e44 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 +PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0 -derror_reporting=E_ALL -ddetect_unicode=0 install-pear-installer: $(top_builddir)/sapi/cli/php @$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(srcdir)/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)" |