[tracker-miners/wip/carlosg/parallel-installable: 1/34] build: Fix run-uninstalled script with external tracker core



commit 3505dea4d20e47bd87d6610d99922c3249dea8fe
Author: Carlos Garnacho <carlosg gnome org>
Date:   Sun Mar 8 11:02:39 2020 +0100

    build: Fix run-uninstalled script with external tracker core
    
    The tracker_sparql_uninstalled_dir is undeclared otherwise. Just have
    it point to the install prefix then.

 meson.build | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/meson.build b/meson.build
index dac9339c5..61f8d27a7 100644
--- a/meson.build
+++ b/meson.build
@@ -27,6 +27,7 @@ if get_option('tracker_core') == 'system'
   # If we are building against an installed version of tracker core rather than
   # having it as a subproject, these 'uninstalled' locations point to the actual
   # installed locations.
+  tracker_sparql_uninstalled_dir = tracker_sparql.get_pkgconfig_variable('libdir')
   tracker_uninstalled_cli_dir = join_paths (tracker_sparql.get_pkgconfig_variable('exec_prefix'), 'bin')
   tracker_uninstalled_nepomuk_ontologies_dir = 
join_paths(tracker_sparql.get_pkgconfig_variable('ontologies_dir'), 'nepomuk')
   tracker_uninstalled_stop_words_dir = join_paths(tracker_sparql.get_pkgconfig_variable('datadir'), 
'tracker', 'stop-words')
@@ -37,6 +38,7 @@ else
 
   tracker_sparql = tracker_subproject.get_variable('tracker_sparql_dep')
 
+  tracker_sparql_uninstalled_dir = tracker_subproject.get_variable('tracker_spraql_uninstalled_dir')
   tracker_uninstalled_cli_dir = tracker_subproject.get_variable('tracker_uninstalled_cli_dir')
   tracker_uninstalled_nepomuk_ontologies_dir = 
tracker_subproject.get_variable('tracker_uninstalled_nepomuk_ontologies_dir')
   tracker_uninstalled_stop_words_dir = tracker_subproject.get_variable('tracker_uninstalled_stop_words_dir')


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]