aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2018-04-23 21:08:53 +0200
committerAleksey Filippov <sarum9in@gmail.com>2018-04-23 14:18:44 -0700
commit7d34353beb6074a3c960067306ca632f2e24cd01 (patch)
tree9f2e4f58bdfdcb09dc40040a8b3f7b60ad6fdecc
parentd2f8f7e312f1761dc0b98d027de9b616aaad8a22 (diff)
downloadmeson-7d34353beb6074a3c960067306ca632f2e24cd01.zip
meson-7d34353beb6074a3c960067306ca632f2e24cd01.tar.gz
meson-7d34353beb6074a3c960067306ca632f2e24cd01.tar.bz2
Fix syntax error in tests common/22, 64 and 132
Fixes commit c8ee45cf15f1a3daefbff519fcb5cc9caa558379. Fixes #3454.
-rw-r--r--test cases/common/132 dependency file generation/meson.build2
-rw-r--r--test cases/common/22 header in file list/meson.build2
-rw-r--r--test cases/common/64 custom header generator/meson.build2
3 files changed, 3 insertions, 3 deletions
diff --git a/test cases/common/132 dependency file generation/meson.build b/test cases/common/132 dependency file generation/meson.build
index cd66cb7..b5ee47b 100644
--- a/test cases/common/132 dependency file generation/meson.build
+++ b/test cases/common/132 dependency file generation/meson.build
@@ -3,7 +3,7 @@ project('dep file gen', 'c')
cc_id = meson.get_compiler('c').get_id()
cc_ver = meson.get_compiler('c').version()
-if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08')
+if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08'))
# ICC and LCC <= 1.23.08 do not escape spaces in paths in the dependency file, so Ninja
# (correctly) thinks that the rule has multiple outputs and errors out:
# 'depfile has multiple output paths'
diff --git a/test cases/common/22 header in file list/meson.build b/test cases/common/22 header in file list/meson.build
index ff42cc4..79eec8d 100644
--- a/test cases/common/22 header in file list/meson.build
+++ b/test cases/common/22 header in file list/meson.build
@@ -3,7 +3,7 @@ project('header in file list', 'c')
cc_id = meson.get_compiler('c').get_id()
cc_ver = meson.get_compiler('c').version()
-if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08')
+if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08'))
# ICC and LCC <= 1.23.08 do not escape spaces in paths in the dependency file, so Ninja
# (correctly) thinks that the rule has multiple outputs and errors out:
# 'depfile has multiple output paths'
diff --git a/test cases/common/64 custom header generator/meson.build b/test cases/common/64 custom header generator/meson.build
index 2279513..d43915a 100644
--- a/test cases/common/64 custom header generator/meson.build
+++ b/test cases/common/64 custom header generator/meson.build
@@ -3,7 +3,7 @@ project('custom header generator', 'c')
cc_id = meson.get_compiler('c').get_id()
cc_ver = meson.get_compiler('c').version()
-if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08')
+if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08'))
# ICC and LCC <= 1.23.08 do not escape spaces in paths in the dependency file, so Ninja
# (correctly) thinks that the rule has multiple outputs and errors out:
# 'depfile has multiple output paths'