summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-10-09 18:48:09 +0200
committerLennart Poettering <lennart@poettering.net>2018-10-09 21:12:00 +0200
commit1b2acaa7a642ad9b95e97f2752ce7c86874caaa0 (patch)
tree78867395dc5518d87abed2ba64644d76c9b9f98f /test
parent13711093eff067a1cbb370f7e22ad390232154e1 (diff)
downloadsystemd-1b2acaa7a642ad9b95e97f2752ce7c86874caaa0.tar.gz
meson: we cannot call get_compiler('cpp') if we didn't "add" it
Follow-up for f6d783ac3d145f3f3ffc2023d4ad90f76cf7fe34.
Diffstat (limited to 'test')
-rw-r--r--test/fuzz/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzz/meson.build b/test/fuzz/meson.build
index b4aadaab2e..b411e96915 100644
--- a/test/fuzz/meson.build
+++ b/test/fuzz/meson.build
@@ -9,7 +9,7 @@ sanitize_address = custom_target(
'fuzzers',
'-Db_lundef=false -Db_sanitize=address',
' '.join(cc.cmd_array()),
- ' '.join(meson.get_compiler('cpp').cmd_array())])
+ cpp_cmd])
sanitizers = [['address', sanitize_address]]