exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 85a803d6ba73c349686561b124eafabe97cb8824
parent 16693211a9a8ac52659908e81fc4f4f85b841ccf
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 13 Apr 2026 19:36:14 +0200

fix symbol names

Diffstat:
Msrc/auditordb/meson.build | 16+++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/src/auditordb/meson.build b/src/auditordb/meson.build @@ -22,12 +22,6 @@ foreach f : sqlfiles configure_file(input: f, output: f, copy: true) endforeach -configure_file( - input: 'test-auditor-db-postgres.conf', - output: 'test-auditor-db-postgres.conf', - copy: true, -) - libtalerauditordb = library( 'talerauditordb', [ @@ -175,7 +169,7 @@ test( test_auditordb = executable( - 'test_auditordb-postgres', + 'test_auditordb', ['test_auditordb.c'], install_rpath: rpath_option, dependencies: [ @@ -189,11 +183,15 @@ test_auditordb = executable( install: false, ) test( - 'test_auditordb-postgres', + 'test_auditordb', test_auditordb, workdir: meson.current_build_dir(), suite: ['auditordb'], is_parallel: false, ) - +configure_file( + input: 'test-auditor-db-postgres.conf', + output: 'test-auditor-db-postgres.conf', + copy: true, +)