We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfc8044 commit 91e31d0Copy full SHA for 91e31d0
pear/Makefile.frag
@@ -3,13 +3,16 @@
3
peardir=$(PEAR_INSTALLDIR)
4
5
# Skip all php.ini files altogether
6
-PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0
+PEAR_INSTALL_FLAGS = -n -dshort_open_tag=0 -dsafe_mode=0 -derror_reporting=0
7
8
install-pear-installer: $(top_builddir)/sapi/cli/php
9
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(srcdir)/install-pear.phar -d "$(peardir)" -b "$(bindir)"
10
11
install-pear:
12
@echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/"
13
+ @if test ! -f $(srcdir)/install-pear.phar; then \
14
+ wget http://pear.php.net/install-pear.phar -nd -P $(srcdir); \
15
+ fi
16
@if test -f $(srcdir)/install-pear.phar && $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \
17
$(MAKE) -s install-pear-installer; \
18
else \
0 commit comments