meson: fix error message

This commit is contained in:
Yu Watanabe 2019-06-17 10:22:54 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 3d3dcc6aa9
commit b349bc59e4
1 changed files with 1 additions and 1 deletions

View 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