diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-08-01 19:30:57 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-08-01 19:30:57 +0200 |
commit | 7ee5ffd2eb241389339116a5df9af5d992b648c9 (patch) | |
tree | 84d3041237ee7e6962d96b928ab034eabdf1e427 | |
parent | 18541a284b57ed7f0c110f084649eb292e603e63 (diff) | |
download | exchange-7ee5ffd2eb241389339116a5df9af5d992b648c9.tar.gz exchange-7ee5ffd2eb241389339116a5df9af5d992b648c9.zip |
-fix FTBFS
-rwxr-xr-x | contrib/gana-update.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/gana-update.sh b/contrib/gana-update.sh index b353d224f..8fcf18852 100755 --- a/contrib/gana-update.sh +++ b/contrib/gana-update.sh | |||
@@ -8,7 +8,14 @@ set -eu | |||
8 | cd contrib/gana/gnu-taler-error-codes | 8 | cd contrib/gana/gnu-taler-error-codes |
9 | make | 9 | make |
10 | cd ../../.. | 10 | cd ../../.. |
11 | for n in taler_error_codes.h taler_error_codes.c | 11 | for n in taler_error_codes.c |
12 | do | ||
13 | if ! diff contrib/gana/gnu-taler-error-codes/${n} src/util/${n} > /dev/null | ||
14 | then | ||
15 | cp contrib/gana/gnu-taler-error-codes/$n src/util/$n | ||
16 | fi | ||
17 | done | ||
18 | for n in taler_error_codes.h | ||
12 | do | 19 | do |
13 | if ! diff contrib/gana/gnu-taler-error-codes/${n} src/include/${n} > /dev/null | 20 | if ! diff contrib/gana/gnu-taler-error-codes/${n} src/include/${n} > /dev/null |
14 | then | 21 | then |