From: Michael Wallner Date: Mon, 6 Feb 2017 18:50:40 +0000 (+0100) Subject: travis: fix lemon X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=commitdiff_plain;h=9a01d0b6658e90781eb27117e44727dca70b1aa5 travis: fix lemon --- diff --git a/.travis.yml b/.travis.yml index 5b40aab..6ff0e26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ addons: env: matrix: - - PHP=master enable_debug=no enable_psi=yes enable_psi_posix=all LEMON='\$(PHP_PSI_BUILDDIR)/lemon' - - PHP=master enable_debug=yes enable_psi=yes enable_psi_posix=all LEMON='\$(PHP_PSI_BUILDDIR)/lemon' + - PHP=master enable_debug=no enable_psi=yes enable_psi_posix=all LEMON='$(PHP_PSI_BUILDDIR)/lemon' + - PHP=master enable_debug=yes enable_psi=yes enable_psi_posix=all LEMON='$(PHP_PSI_BUILDDIR)/lemon' before_script: - make -f travis/pecl/Makefile php diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index 43a30c9..7c515d7 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -24,7 +24,7 @@ $env = $gen([ #"enable_maintainer_zts", "enable_psi" => ["yes"], "enable_psi_posix" => ["all"], - "LEMON" => ["'\\\$(PHP_PSI_BUILDDIR)/lemon'"] + "LEMON" => ["'\$(PHP_PSI_BUILDDIR)/lemon'"] ]); foreach ($env as $e) { printf(" - %s\n", $e);