diff options
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,7 @@ #!/bin/sh +set -eu + if ! git --version >/dev/null; then echo "git not installed" exit 1 @@ -7,6 +9,13 @@ fi git submodule update --init +# Generate taler-error-codes.h in gana and copy it to +# src/include/taler_error_codes.h +cd contrib/gana/gnu-taler-error-codes +make +cd ../../.. +cp contrib/gana/gnu-taler-error-codes/taler-error-codes.h src/include/taler_error_codes.h + # This is more portable than `which' but comes with # the caveat of not(?) properly working on busybox's ash: existence() |