diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2017-12-16 22:31:10 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2017-12-16 22:31:10 +0100 |
commit | 340255a69433d6af44ce484af7ba686528f2b9e1 (patch) | |
tree | 44310714aa23007ff621216894bb8a973be124f9 | |
parent | ee45104dbafc937d944995733f93fd4f160a6922 (diff) | |
download | php-git-340255a69433d6af44ce484af7ba686528f2b9e1.tar.gz |
Fixed bug #75614
Replace non-standard == with = in shell scripts.
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/curl/config.m4 | 2 | ||||
-rwxr-xr-x | makedist | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -4,6 +4,7 @@ PHP NEWS - Core: . Fixed bug #75679 (Path 260 character problem). (Anatol) + . Fixed bug #75614 (Some non-portable == in shell scripts). (jdolecek) - Opcache: . Fixed bug #75687 (var 8 (TMP) has array key type but not value type). diff --git a/ext/curl/config.m4 b/ext/curl/config.m4 index 9db0decd6c..8e688c1a11 100644 --- a/ext/curl/config.m4 +++ b/ext/curl/config.m4 @@ -14,7 +14,7 @@ if test "$PHP_CURL" != "no"; then dnl using pkg-config output AC_MSG_CHECKING(for libcurl.pc) - if test "$PHP_CURL" == "yes" -o "$PHP_CURL" == "/usr"; then + if test "$PHP_CURL" = "yes" -o "$PHP_CURL" = "/usr"; then PKNAME=libcurl AC_MSG_RESULT(using default path) elif test -r $PHP_CURL/$PHP_LIBDIR/pkgconfig/libcurl.pc; then @@ -40,7 +40,7 @@ if test "${2}" -lt "13" -o "${2}" -eq "13" -a "${3}" -lt "5"; then fi IFS="$old_IFS" -if test "x$PHPROOT" == "x"; then +if test "x$PHPROOT" = "x"; then PHPROOT=git@git.php.net:php-src.git; fi |