]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: fix error message
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 17 Jun 2019 01:22:54 +0000 (10:22 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 17 Jun 2019 05:44:18 +0000 (07:44 +0200)
meson.build

index 30e4743489814571f2ecbf5ba80eec4ef23d9ac5..19c005141fb98ac82769a54be43e772d982c8d22 100644 (file)
@@ -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