diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-08-19 20:41:25 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-08-19 20:41:25 +0200 |
commit | a51f39217ec3b659f938687e2146ceb17078733d (patch) | |
tree | a266545f5c9ab4aa0010c5af163c35accfcb2569 | |
parent | a11e3cb193fd29a4d59517a9e1f96f0d44ad0d01 (diff) | |
download | exchange-a51f39217ec3b659f938687e2146ceb17078733d.tar.gz exchange-a51f39217ec3b659f938687e2146ceb17078733d.zip |
fix .so search in taler-config
-rw-r--r-- | src/util/taler-config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/taler-config.in b/src/util/taler-config.in index b6561d872..07f6401d6 100644 --- a/src/util/taler-config.in +++ b/src/util/taler-config.in | |||
@@ -8,5 +8,6 @@ if ! type gnunet-config >/dev/null; then | |||
8 | fi | 8 | fi |
9 | 9 | ||
10 | GC=`which gnunet-config` | 10 | GC=`which gnunet-config` |
11 | export LD_PRELOAD=${LD_PRELOAD:-}:%libdir%/libtalerutil.so | 11 | SO=`ls %libdir%/libtalerutil.so.* | sort -n | tail -n1` |
12 | export LD_PRELOAD=${LD_PRELOAD:-}:${SO} | ||
12 | exec gnunet-config "$@" | 13 | exec gnunet-config "$@" |