aboutsummaryrefslogtreecommitdiff
path: root/gnu-taler-error-codes
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-04-02 13:02:18 +0200
committerFlorian Dold <florian@dold.me>2024-04-02 13:02:18 +0200
commit78c706aecf318cc5a28797b304974f3c7c82525c (patch)
tree144c493c320906f799c1f7f65aa320e186b8f497 /gnu-taler-error-codes
parent9cc49922b216302b09dc7197de0fb94e88f7ef75 (diff)
downloadgana-78c706aecf318cc5a28797b304974f3c7c82525c.tar.gz
gana-78c706aecf318cc5a28797b304974f3c7c82525c.zip
-fix octal for TypeScript as well
Diffstat (limited to 'gnu-taler-error-codes')
-rw-r--r--gnu-taler-error-codes/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu-taler-error-codes/Makefile b/gnu-taler-error-codes/Makefile
index 608512d..9e59810 100644
--- a/gnu-taler-error-codes/Makefile
+++ b/gnu-taler-error-codes/Makefile
@@ -53,7 +53,7 @@ taler_error_codes.ts.tmp: combined.tmp ts.template
53 ../format.sh ts.template < combined.tmp > $@ 53 ../format.sh ts.template < combined.tmp > $@
54 54
55taler_error_codes.ts: ts.header taler_error_codes.ts.tmp ts.footer 55taler_error_codes.ts: ts.header taler_error_codes.ts.tmp ts.footer
56 cat $^ > $@ 56 cat $^ | sed -e "s/= 0000/= 0/" -e "s/= 000/= /" -e "s/= 00/= /" > $@
57 57
58taler_error_codes.kt.tmp: combined.tmp kt.template 58taler_error_codes.kt.tmp: combined.tmp kt.template
59 ../format.sh kt.template < combined.tmp > $@ 59 ../format.sh kt.template < combined.tmp > $@