force use of Taler PD when getting libexec dir

This commit is contained in:
Christian Grothoff 2020-12-11 12:51:00 +01:00
parent 7274162458
commit 781542d3e0
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
6 changed files with 875 additions and 467 deletions

View File

@ -1 +1 @@
1598635181 1607681650

Binary file not shown.

View File

@ -1 +1 @@
PSWTBHMBE6H4K9J73XTGZWHBW4S4HZSQ8SMDTFYREAQWX31Z6300 WCAK9NFTBW24EV49KWQBY6B3JDD0PJGZZZCSVHQ76VE21CXWD08G

File diff suppressed because it is too large Load Diff

View File

@ -44,7 +44,7 @@ cp generate-auditor-basedb-template.conf $CONF
echo -n "Testing for taler-bank-manage" echo -n "Testing for taler-bank-manage"
taler-bank-manage -h >/dev/null </dev/null || exit_skip " MISSING" taler-bank-manage --help >/dev/null </dev/null || exit_skip " MISSING"
echo " FOUND" echo " FOUND"
echo -n "Testing for taler-wallet-cli" echo -n "Testing for taler-wallet-cli"
taler-wallet-cli -v >/dev/null </dev/null || exit_skip " MISSING" taler-wallet-cli -v >/dev/null </dev/null || exit_skip " MISSING"

View File

@ -750,8 +750,12 @@ start_helpers (const char *config_filename,
struct GNUNET_OS_Process *helpers[2]) struct GNUNET_OS_Process *helpers[2])
{ {
char *dir; char *dir;
const struct GNUNET_OS_ProjectData *pd;
pd = GNUNET_OS_project_data_get ();
GNUNET_OS_init (TALER_project_data_default ());
dir = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LIBEXECDIR); dir = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LIBEXECDIR);
GNUNET_OS_init (pd);
if (NULL == dir) if (NULL == dir)
{ {
GNUNET_break (0); GNUNET_break (0);