Skip to content

Commit

Permalink
- Always use the builddir!
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Dec 12, 2005
1 parent a939717 commit a8a4d79
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pear/Makefile.frag
Original file line number Diff line number Diff line change
Expand Up @@ -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; \
Expand Down

0 comments on commit a8a4d79

Please sign in to comment.