diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 01:35:30 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 01:35:30 +0300 |
commit | 403c3f95fe9687d488c9e18643fa88a8c7ea91f6 (patch) | |
tree | e1ac7f86385986194adb7b496b8a7f00c9e87e5b | |
parent | 73815573e0e483cc0f81145d53ae6308508bbd27 (diff) | |
parent | c1f597d9a13a6a4df80d9969fe7845b45bddf402 (diff) | |
download | php-git-403c3f95fe9687d488c9e18643fa88a8c7ea91f6.tar.gz |
Merge branch 'PHP-5.6' into PHP-7.0
* PHP-5.6:
opcache config.m4: Use = for comparison
-rw-r--r-- | ext/opcache/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/config.m4 b/ext/opcache/config.m4 index 1e7fce47f2..657d859691 100644 --- a/ext/opcache/config.m4 +++ b/ext/opcache/config.m4 @@ -376,7 +376,7 @@ AC_TRY_RUN([ AC_MSG_RESULT("yes") ], AC_MSG_RESULT("no") ) -if test "$flock_type" == "unknown"; then +if test "$flock_type" = "unknown"; then AC_MSG_ERROR([Don't know how to define struct flock on this system[,] set --enable-opcache=no]) fi |