diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-10-09 18:48:09 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2018-10-09 21:12:00 +0200 |
commit | 1b2acaa7a642ad9b95e97f2752ce7c86874caaa0 (patch) | |
tree | 78867395dc5518d87abed2ba64644d76c9b9f98f /test/fuzz | |
parent | bpf-firewall: always use log_unit_xyz() insteadof log_xyz() (diff) | |
download | systemd-1b2acaa7a642ad9b95e97f2752ce7c86874caaa0.tar.xz systemd-1b2acaa7a642ad9b95e97f2752ce7c86874caaa0.zip |
meson: we cannot call get_compiler('cpp') if we didn't "add" it
Follow-up for f6d783ac3d145f3f3ffc2023d4ad90f76cf7fe34.
Diffstat (limited to 'test/fuzz')
-rw-r--r-- | test/fuzz/meson.build | 2 |
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]] |