commit: 33e23d38b0235978641e29ea367a89614b7bc999
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 9 11:11:22 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 9 11:11:22 2023 +0000
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=33e23d38
meson.build: fix running tests out of source
Signed-off-by: Sam James <sam <AT> gentoo.org>
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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