Skip to content

Commit 340255a

Browse files
committed
Fixed bug #75614
Replace non-standard == with = in shell scripts.
1 parent ee45104 commit 340255a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ PHP NEWS
44

55
- Core:
66
. Fixed bug #75679 (Path 260 character problem). (Anatol)
7+
. Fixed bug #75614 (Some non-portable == in shell scripts). (jdolecek)
78

89
- Opcache:
910
. Fixed bug #75687 (var 8 (TMP) has array key type but not value type).

ext/curl/config.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if test "$PHP_CURL" != "no"; then
1414
dnl using pkg-config output
1515

1616
AC_MSG_CHECKING(for libcurl.pc)
17-
if test "$PHP_CURL" == "yes" -o "$PHP_CURL" == "/usr"; then
17+
if test "$PHP_CURL" = "yes" -o "$PHP_CURL" = "/usr"; then
1818
PKNAME=libcurl
1919
AC_MSG_RESULT(using default path)
2020
elif test -r $PHP_CURL/$PHP_LIBDIR/pkgconfig/libcurl.pc; then

makedist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if test "${2}" -lt "13" -o "${2}" -eq "13" -a "${3}" -lt "5"; then
4040
fi
4141
IFS="$old_IFS"
4242

43-
if test "x$PHPROOT" == "x"; then
43+
if test "x$PHPROOT" = "x"; then
4444
PHPROOT=git@git.php.net:php-src.git;
4545
fi
4646

0 commit comments

Comments
 (0)