summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-10-07 13:56:47 +0200
committerFerenc Kovacs <tyrael@php.net>2015-10-07 13:56:47 +0200
commitf9e3461c02068c599ea9fbf6455860c8cc956bc6 (patch)
tree1fd47e60ac7a38ba7092ca1b798bda269116ef29
parent5d2813edceaf24664388ac301adc885e147606a3 (diff)
downloadphp-git-f9e3461c02068c599ea9fbf6455860c8cc956bc6.tar.gz
pear 1.10 was released and the go-pear and install pear phars are now php7 compatible
-rwxr-xr-xmakedist2
-rw-r--r--pear/Makefile.frag2
-rw-r--r--win32/build/mkdist.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/makedist b/makedist
index 50cb49ed3a..5b28dd88d4 100755
--- a/makedist
+++ b/makedist
@@ -118,7 +118,7 @@ sed -i 's,^#ifndef YYTOKENTYPE,#include "zend.h"\n#ifndef YYTOKENTYPE,g' $MY_OLD
# download pear
$ECHO_N "makedist: Attempting to download PEAR's phar archive"
if test ! -x wget; then
- wget https://pear.php.net/~cweiske/1.10.0dev2/install-pear-nozlib.phar -nd -P pear/
+ wget https://pear.php.net/install-pear-nozlib.phar -nd -P pear/
else
$ECHO_N "Missing wget binary needed for pear download";
exit 7
diff --git a/pear/Makefile.frag b/pear/Makefile.frag
index 4cb7bc9d11..bbe8ec3513 100644
--- a/pear/Makefile.frag
+++ b/pear/Makefile.frag
@@ -9,7 +9,7 @@ WGET = `which wget 2>/dev/null`
FETCH = `which fetch 2>/dev/null`
PEAR_PREFIX = -dp a${program_prefix}
PEAR_SUFFIX = -ds a$(program_suffix)
-PEAR_INSTALLER_URL = https://pear.php.net/~cweiske/1.10.0dev2/install-pear-nozlib.phar
+PEAR_INSTALLER_URL = https://pear.php.net/install-pear-nozlib.phar
install-pear-installer: $(SAPI_CLI_PATH)
@$(top_builddir)/sapi/cli/php $(PEAR_INSTALL_FLAGS) pear/install-pear-nozlib.phar -d "$(peardir)" -b "$(bindir)" ${PEAR_PREFIX} ${PEAR_SUFFIX}
diff --git a/win32/build/mkdist.php b/win32/build/mkdist.php
index c37939896c..ca99b0dba9 100644
--- a/win32/build/mkdist.php
+++ b/win32/build/mkdist.php
@@ -498,7 +498,7 @@ if (!$use_pear_template) {
/* grab the bootstrap script */
echo "Downloading go-pear\n";
- copy("https://pear.php.net/~cweiske/1.10.0dev2/go-pear.phar", "$dist_dir/PEAR/go-pear.php");
+ copy("https://pear.php.net/go-pear.phar", "$dist_dir/PEAR/go-pear.php");
/* import the package list -- sets $packages variable */
include "pear/go-pear-list.php";