From 9a01d0b6658e90781eb27117e44727dca70b1aa5 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 6 Feb 2017 19:50:40 +0100 Subject: [PATCH] travis: fix lemon --- .travis.yml | 4 ++-- scripts/gen_travis_yml.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.30.2