From: Yu Watanabe Date: Mon, 17 Jun 2019 01:22:54 +0000 (+0900) Subject: meson: fix error message X-Git-Tag: v243-rc1~281 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b349bc59e4a5d91045668074c19c2bc60b0a7c1a;p=thirdparty%2Fsystemd.git meson: fix error message --- diff --git a/meson.build b/meson.build index 30e47434898..19c005141fb 100644 --- a/meson.build +++ b/meson.build @@ -1203,7 +1203,7 @@ if dns_over_tls != 'false' have_openssl = conf.get('HAVE_OPENSSL') == 1 if dns_over_tls != 'auto' and not have_openssl str = dns_over_tls == 'openssl' ? ' with openssl' : '' - error('DNS-over-TLS support was requested$0$, but dependencies are not available'.format(str)) + error('DNS-over-TLS support was requested@0@, but dependencies are not available'.format(str)) endif endif have = have_gnutls or have_openssl