Skip to content

Commit 4e8cab9

Browse files
committed
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
* 'PHP-5.4' of https://git.php.net/repository/php-src: trivial change try to ci a "fake" merge Fix test, parameter signatures was introduced only into 5.4 fix makedist for new tags
2 parents 0623574 + 14fdb8b commit 4e8cab9

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

makedist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
#
55
# Usage: makedist version
66
# Example: makedist 5.4.1
7-
# Example: makedist 5.3.5-RC1
7+
# Example: makedist 5.3.5RC1
88
#
99
# To work, this script needs a consistent tagging of all releases.
1010
# Each release of a package should have a tag of the form
1111
#
12-
# PHP-X.Y.Z[-sub]
12+
# php-X.Y.Z[sub]
1313
#
1414
# The distribution ends up in a .tar.gz file that contains the distribution
1515
# in a directory called php-<version>.
@@ -63,8 +63,8 @@ if test -d "$DIRPATH"; then
6363
fi
6464

6565
# Export PHP
66-
$ECHO_N "makedist: exporting tag 'PHP-$VER' from '$PHPROOT'...$ECHO_C"
67-
git archive --format=tar --remote=$PHPROOT refs/tags/PHP-$VER --prefix=php-$VER/ | (cd $MY_OLDPWD; tar xvf -) || exit 4
66+
$ECHO_N "makedist: exporting tag 'php-$VER' from '$PHPROOT'...$ECHO_C"
67+
git archive --format=tar --remote=$PHPROOT refs/tags/php-$VER --prefix=php-$VER/ | (cd $MY_OLDPWD; tar xvf -) || exit 4
6868
echo ""
6969

7070
cd $DIR || exit 5

tests/classes/ctor_in_interface_02.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class implem13 implements constr1, constr3
2929
{
3030
}
3131
}
32-
3332
?>
3433
--EXPECTF--
3534
Fatal error: Declaration of implem13::__construct() must be compatible with constr3::__construct($a) in %s on line %d

0 commit comments

Comments
 (0)