mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
- Always use the builddir!
This commit is contained in:
parent
a939717011
commit
a8a4d7944d
@ -5,15 +5,19 @@ 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
|
||||
|
||||
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)"
|
||||
install-pear-installer: $(SAPI_CLI_PATH)
|
||||
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) $(builddir)/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)"
|
||||
|
||||
install-pear:
|
||||
@echo "Installing PEAR environment: $(INSTALL_ROOT)$(peardir)/"
|
||||
@if test ! -f $(srcdir)/install-pear-nozlib.phar; then \
|
||||
wget http://pear.php.net/install-pear-nozlib.phar -nd -P $(srcdir); \
|
||||
@if test ! -f $(builddir)/install-pear-nozlib.phar; then \
|
||||
if test -f $(srcdir)/install-pear-nozlib.phar; then \
|
||||
cp $(srcdir)/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
|
||||
else \
|
||||
wget http://pear.php.net/install-pear-nozlib.phar -nd -P $(builddir)/; \
|
||||
fi \
|
||||
fi
|
||||
@if test -f $(srcdir)/install-pear-nozlib.phar && $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \
|
||||
@if test -f $(builddir)/install-pear-nozlib.phar && $(mkinstalldirs) $(INSTALL_ROOT)$(peardir); then \
|
||||
$(MAKE) -s install-pear-installer; \
|
||||
else \
|
||||
cat $(srcdir)/install-pear.txt; \
|
||||
|
Loading…
Reference in New Issue
Block a user