aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-24 12:42:44 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-24 12:42:44 +0200
commit82ff6a36db88799cf6f658bd8855cefa5306c06d (patch)
tree9a6351de11fa1d6743b40ed398523c4b2f0f0e59
parentdaf58687288a77b6eee4a4d66811153200d2039c (diff)
downloadgana-82ff6a36db88799cf6f658bd8855cefa5306c06d.tar.gz
gana-82ff6a36db88799cf6f658bd8855cefa5306c06d.zip
suppress diff output
-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 e2faf3a..502c6f2 100644
--- a/gnu-taler-error-codes/Makefile
+++ b/gnu-taler-error-codes/Makefile
@@ -23,7 +23,7 @@ prep:
23# actually changed the result. 23# actually changed the result.
24combined.tmp: registry.rec prep 24combined.tmp: registry.rec prep
25 recsel -t TalerErrorCode -j HttpStatus -p Description,Name,Value,HttpStatus,HttpStatus.Value,HttpStatus.Identifier ../http-status-codes/registry.rec registry.rec > combined.xtmp 25 recsel -t TalerErrorCode -j HttpStatus -p Description,Name,Value,HttpStatus,HttpStatus.Value,HttpStatus.Identifier ../http-status-codes/registry.rec registry.rec > combined.xtmp
26 if ! diff $@ combined.xtmp; then mv combined.xtmp $@; else rm combined.xtmp; fi 26 if ! diff $@ combined.xtmp > /dev/null; then mv combined.xtmp $@; else rm combined.xtmp; fi
27 27
28combined-escaped.tmp: combined.tmp 28combined-escaped.tmp: combined.tmp
29 sed 's/"/\\"/g' $^ > $@ 29 sed 's/"/\\"/g' $^ > $@