exchange/src/util/taler-config.in
Christian Grothoff 17eafb869c
address FIXME
2020-03-28 22:12:47 +01:00

13 lines
240 B
Bash

#!/usr/bin/env bash
set -eu
if ! type gnunet-config >/dev/null; then
echo "$0 needs gnunet-config to be installed"
exit 1
fi
GC=`which gnunet-config`
export LD_PRELOAD=${LD_PRELOAD:-}:%libdir%/libtalerutil.so
exec gnunet-config "$@"