From a8a4d7944d8317cd0ffffc1889fefc3436ad53bc Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 12 Dec 2005 12:39:50 +0000 Subject: - Always use the builddir! --- pear/Makefile.frag | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'pear') diff --git a/pear/Makefile.frag b/pear/Makefile.frag index a8b1d68e44..c86d062ef1 100644 --- a/pear/Makefile.frag +++ b/pear/Makefile.frag @@ -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; \ -- cgit v1.2.1