summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-12 10:13:06 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-03-12 10:13:06 +0100
commitf0996f2114f375459638bd063966ac62c542c51a (patch)
treefbc98cfca95f02f152d587e7fc57bdb2a46ef080
parenta600d69e45cce015bded9da5f61142da27cf3400 (diff)
meson.build: Simplify if-file-exists test
-rw-r--r--meson.build14
1 files changed, 3 insertions, 11 deletions
diff --git a/meson.build b/meson.build
index 06265d2..ece167e 100644
--- a/meson.build
+++ b/meson.build
@@ -183,17 +183,9 @@ if maintainer_mode
project_source_root / 'untracked' / 'docs',
check: true,
)
-else
- cmd_py = '''
-import os
-import sys
-sys.exit(os.path.isfile("@0@"))
-'''.format(doc_reference_py)
- file_exists = run_command(python3, '-c', cmd_py, check: false).returncode() != 0
- if not file_exists
- warning('Missing files in untracked/. ' + \
- 'Enable maintainer-mode if you want to build documentation or create a dist tarball.')
- endif
+elif not import('fs').is_file(doc_reference_py)
+ warning('Missing files in untracked/.\n ' + \
+ 'Enable maintainer-mode if you want to build documentation or create a dist tarball.')
endif
# Check if perl is required and available.