-fix FTBFS

This commit is contained in:
Christian Grothoff 2021-08-01 19:30:57 +02:00
parent 18541a284b
commit 7ee5ffd2eb
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -8,7 +8,14 @@ set -eu
cd contrib/gana/gnu-taler-error-codes
make
cd ../../..
for n in taler_error_codes.h taler_error_codes.c
for n in taler_error_codes.c
do
if ! diff contrib/gana/gnu-taler-error-codes/${n} src/util/${n} > /dev/null
then
cp contrib/gana/gnu-taler-error-codes/$n src/util/$n
fi
done
for n in taler_error_codes.h
do
if ! diff contrib/gana/gnu-taler-error-codes/${n} src/include/${n} > /dev/null
then