1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-11 10:05:19 +02:00

Merge pull request #2017 from nickvergessen/ticket/12141

[ticket/12141] Disable opcache on travis for php 5.5.8 aswell

* nickvergessen/ticket/12141:
  [ticket/12141] Disable opcache on travis for php 5.5.8 aswell
This commit is contained in:
Andreas Fischer 2014-02-08 14:00:30 +01:00
commit eb2d8fe6d8

View File

@ -37,8 +37,8 @@ function install_php_extension
php_ini_file=$(find_php_ini)
# disable broken opcache on PHP 5.5.7
if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.8', '<');"` == "1" ]
# disable broken opcache on PHP 5.5.7 and 5.5.8
if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.9', '<');"` == "1" ]
then
sed -i '/opcache.so/d' "$php_ini_file"
fi