summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-06-09 12:11:22 +0100
committerSam James <sam@gentoo.org>2023-06-09 12:11:22 +0100
commit33e23d38b0235978641e29ea367a89614b7bc999 (patch)
tree90d1d4eb81d4fe37ff1e48fe4ee8c837434e92d0 /meson.build
parentPort to Meson (diff)
downloadgentoo-functions-33e23d38b0235978641e29ea367a89614b7bc999.tar.gz
gentoo-functions-33e23d38b0235978641e29ea367a89614b7bc999.tar.bz2
gentoo-functions-33e23d38b0235978641e29ea367a89614b7bc999.zip
meson.build: fix running tests out of source
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 049812d..f86edd5 100644
--- a/meson.build
+++ b/meson.build
@@ -43,6 +43,6 @@ do_tests = get_option('tests')
if do_tests
test(
'test-functions', files('test-functions'),
- workdir : meson.current_source_dir(),
+ workdir : meson.current_build_dir(),
)
endif