summaryrefslogtreecommitdiff
path: root/utils/trackertestutils
diff options
context:
space:
mode:
authorSam Thursfield <sam@afuera.me.uk>2020-06-17 00:13:57 +0200
committerSam Thursfield <sam@afuera.me.uk>2020-06-17 00:16:05 +0200
commit4daeebe91b5d0c7dd6f7eab8331efc2e428a4b70 (patch)
treed6b2f7fb4841841aa1a74a31fa312fb2e2933c0d /utils/trackertestutils
parent8efffa3f98a45a0e31b8e49e72cd792e2be73ef5 (diff)
downloadtracker-4daeebe91b5d0c7dd6f7eab8331efc2e428a4b70.tar.gz
build: Move trackertestutils to regular libdir
This models what gobject-introspection does with its giscanner library, which is the model I think we should copy (it's a Python module but we consider it Tracker-specific rather than part of the regular Python module ecosystem). Previously we tried to put it into lib/ rather than lib64/ on 64-bit systems. This causes unneeded friction.
Diffstat (limited to 'utils/trackertestutils')
-rw-r--r--utils/trackertestutils/meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/trackertestutils/meson.build b/utils/trackertestutils/meson.build
index 93c0b500e..18a1e8a70 100644
--- a/utils/trackertestutils/meson.build
+++ b/utils/trackertestutils/meson.build
@@ -12,9 +12,7 @@ if get_option('test_utils')
testutils_dir = get_option('test_utils_dir')
if testutils_dir == ''
- arch_independent_libdir = \
- get_option('prefix') / 'lib' / 'tracker-' + tracker_api_version
- testutils_dir = join_paths(arch_independent_libdir)
+ testutils_dir = tracker_internal_libs_dir
endif
install_data(sources, install_dir: testutils_dir / 'trackertestutils')