[beast: 7/9] BSE: bsetool.cc: use installpath_override() when invoked uninstalled
- From: Tim Janik <timj src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [beast: 7/9] BSE: bsetool.cc: use installpath_override() when invoked uninstalled
- Date: Thu, 8 Jun 2017 20:23:16 +0000 (UTC)
commit 3f9465dbb068206362de7de2029b14293b470fb3
Author: Tim Janik <timj gnu org>
Date: Fri May 26 00:33:01 2017 +0200
BSE: bsetool.cc: use installpath_override() when invoked uninstalled
Signed-off-by: Tim Janik <timj gnu org>
bse/bsetool.cc | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
---
diff --git a/bse/bsetool.cc b/bse/bsetool.cc
index 0d2987e..ffd17ba 100644
--- a/bse/bsetool.cc
+++ b/bse/bsetool.cc
@@ -466,6 +466,16 @@ static ArgDescription bsetool_options[] = {
int
main (int argc_int, char *argv[])
{
+ // use top_builddir as Bse installpath
+ const char *const argv0_slash = strrchr (argv[0], '/');
+ if (argv0_slash && argv0_slash >= argv[0] + 6 && (strncmp (argv0_slash - 6, "/.libs/lt-", 10) == 0 ||
+ strncmp (argv0_slash - 6, "/_libs/lt-", 10) == 0))
+ {
+ namespace Path = Bse::Path;
+ const String argv0_abspath = Path::abspath (argv[0]);
+ const String dirpath = Path::join (Path::dirname (argv0_abspath), "..", ".."); //
topdir/subdir/.libs/../..
+ Bse::installpath_override (Path::realpath (dirpath));
+ }
bse_init_inprocess (&argc_int, argv, "bsetool"); // Bse::cstrings_to_vector (NULL)
const unsigned int argc = argc_int;
// now that the BSE thread runs, drop scheduling priorities if we have any
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]