Skip to content

Commit 0f15a03

Browse files
committed
Merge branch 'PHP-7.1'
* PHP-7.1: Fix configure error
2 parents 9437dcd + 21cbdf6 commit 0f15a03

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ PHP NEWS
55
- Core:
66
. Fixed bug #74780 (parse_url() borken when query string contains colon).
77
(jhdxr)
8+
. Fixed bug #74761 (Unary operator expected error on some systems). (petk)
89

910
- SPL:
1011
. Fixed bug #73471 (PHP freezes with AppendIterator). (jhdxr)

acinclude.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2676,7 +2676,7 @@ EOF
26762676
done
26772677
26782678
echo "'[$]0' \\" >> $1
2679-
if test `expr -- [$]0 : "'.*"` = 0; then
2679+
if test `expr " [$]0" : " '.*"` = 0; then
26802680
CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]0'"
26812681
else
26822682
CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]0"

0 commit comments

Comments
 (0)