From: Michael Olbrich Date: Sun, 11 Nov 2018 10:30:53 +0000 (+0100) Subject: meson: fix building with -Ddns-over-tls=false X-Git-Tag: v240~363^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10726%2Fhead;p=thirdparty%2Fsystemd.git meson: fix building with -Ddns-over-tls=false Assigning multiple variables in one line is no valid meson syntax. Without this running meson with -Ddns-over-tls=false fails with: meson.build:1191:8: ERROR: Tried to assign an invalid value to variable. --- diff --git a/meson.build b/meson.build index 78be291ae64..d3cea0cfdf2 100644 --- a/meson.build +++ b/meson.build @@ -1188,7 +1188,9 @@ if dns_over_tls != 'false' endif have = have_gnutls or have_openssl else - have = have_gnutls = have_openssl = false + have = false + have_gnutls = false + have_openssl = false endif conf.set10('ENABLE_DNS_OVER_TLS', have) conf.set10('DNS_OVER_TLS_USE_GNUTLS', have_gnutls)