From: Fred Morcos Date: Tue, 8 Aug 2023 14:12:36 +0000 (+0200) Subject: Meson: More consistent file naming X-Git-Tag: rec-5.1.0-alpha1~80^2~280 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9c0d3133854150d14a2b7c4852bdf99fca80aa9;p=thirdparty%2Fpdns.git Meson: More consistent file naming --- diff --git a/meson.build b/meson.build index 87caf6cced..949763ae8e 100644 --- a/meson.build +++ b/meson.build @@ -80,7 +80,7 @@ if not ragel.found() and not fs.exists('pdns' / 'dnslabeltext.cc') endif # Swagger -if not fs.exists('pdns/api-swagger.json') and not python_have_venv +if not fs.exists('pdns' / 'api-swagger.json') and not python_have_venv error('Python3 and/or its venv module is not available and ' + '`pdns/api-swagger.json` cannot be found. ' + 'The Authoritative Server cannot be built.') @@ -88,7 +88,7 @@ endif # TODO Generate api-swagger.json # Manpages -if not fs.exists('docs/pdns_server.1') and not python_have_venv +if not fs.exists('docs' / 'pdns_server.1') and not python_have_venv warning('Python3 and/or its venv module is not available and ' + '`docs/pdns_server.1` cannot be found. ' + 'Documentation will not be built.')