From 7d34353beb6074a3c960067306ca632f2e24cd01 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" Date: Mon, 23 Apr 2018 21:08:53 +0200 Subject: Fix syntax error in tests common/22, 64 and 132 Fixes commit c8ee45cf15f1a3daefbff519fcb5cc9caa558379. Fixes #3454. --- test cases/common/132 dependency file generation/meson.build | 2 +- test cases/common/22 header in file list/meson.build | 2 +- test cases/common/64 custom header generator/meson.build | 2 +- 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 cd66cb78a..b5ee47bf2 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 ff42cc411..79eec8d68 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 2279513aa..d43915a3c 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' -- cgit v1.2.3