diff options
author | Sam Thursfield <sam@afuera.me.uk> | 2020-06-17 00:13:57 +0200 |
---|---|---|
committer | Sam Thursfield <sam@afuera.me.uk> | 2020-06-17 00:16:05 +0200 |
commit | 4daeebe91b5d0c7dd6f7eab8331efc2e428a4b70 (patch) | |
tree | d6b2f7fb4841841aa1a74a31fa312fb2e2933c0d /utils | |
parent | 8efffa3f98a45a0e31b8e49e72cd792e2be73ef5 (diff) | |
download | tracker-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')
-rw-r--r-- | utils/trackertestutils/meson.build | 4 |
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') |