Skip to content

Commit cd37e7c

Browse files
committed
use the new php7 compatible pear installer
1 parent 62515a1 commit cd37e7c

File tree

3 files changed

+4
-97200
lines changed

3 files changed

+4
-97200
lines changed

makedist

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ sed -i 's,^#ifndef YYTOKENTYPE,#include "zend.h"\n#ifndef YYTOKENTYPE,g' $MY_OLD
113113
# download pear
114114
$ECHO_N "makedist: Attempting to download PEAR's phar archive"
115115
if test ! -x wget; then
116-
wget http://pear.php.net/install-pear-nozlib.phar -nd -P pear/
116+
wget http://pear.php.net/~cweiske/1.10.0dev1/install-pear-nozlib.phar -nd -P pear/
117117
else
118118
$ECHO_N "Missing wget binary needed for pear download";
119119
exit 7

pear/Makefile.frag

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ install-pear:
2020
cp $(srcdir)/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
2121
else \
2222
if test ! -z "$(WGET)" && test -x "$(WGET)"; then \
23-
"$(WGET)" http://pear.php.net/install-pear-nozlib.phar -nd -P $(builddir)/; \
23+
"$(WGET)" http://pear.php.net/~cweiske/1.10.0dev1/install-pear-nozlib.phar -nd -P $(builddir)/; \
2424
elif test ! -z "$(FETCH)" && test -x "$(FETCH)"; then \
25-
"$(FETCH)" -o $(builddir)/ http://pear.php.net/install-pear-nozlib.phar; \
25+
"$(FETCH)" -o $(builddir)/ http://pear.php.net/~cweiske/1.10.0dev1/install-pear-nozlib.phar; \
2626
else \
27-
$(top_builddir)/sapi/cli/php -n $(srcdir)/fetch.php http://pear.php.net/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
27+
$(top_builddir)/sapi/cli/php -n $(srcdir)/fetch.php http://pear.php.net/~cweiske/1.10.0dev1/install-pear-nozlib.phar $(builddir)/install-pear-nozlib.phar; \
2828
fi \
2929
fi \
3030
fi

0 commit comments

Comments
 (0)