From b349bc59e4a5d91045668074c19c2bc60b0a7c1a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 17 Jun 2019 10:22:54 +0900 Subject: [PATCH] meson: fix error message --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2