diff options
author | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 01:38:37 +0300 |
---|---|---|
committer | Lior Kaplan <kaplanlior@gmail.com> | 2016-04-09 01:38:37 +0300 |
commit | 2875ac9c00baec3a1e942a8de3a1a33facbd55a0 (patch) | |
tree | 89a0585fd388c3b57790f65b5e49d0dc8b015485 | |
parent | 513b9929a1bcc93e09d6a1fe98823f7ee8951251 (diff) | |
parent | 403c3f95fe9687d488c9e18643fa88a8c7ea91f6 (diff) | |
download | php-git-2875ac9c00baec3a1e942a8de3a1a33facbd55a0.tar.gz |
Merge branch 'PHP-7.0'
* PHP-7.0:
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 15613285ff..e6c39f4aca 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 |