diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-07-24 12:42:44 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-07-24 12:42:44 +0200 |
commit | 82ff6a36db88799cf6f658bd8855cefa5306c06d (patch) | |
tree | 9a6351de11fa1d6743b40ed398523c4b2f0f0e59 /gnu-taler-error-codes/Makefile | |
parent | daf58687288a77b6eee4a4d66811153200d2039c (diff) |
suppress diff output
Diffstat (limited to 'gnu-taler-error-codes/Makefile')
-rw-r--r-- | gnu-taler-error-codes/Makefile | 2 |
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: # actually changed the result. combined.tmp: registry.rec prep recsel -t TalerErrorCode -j HttpStatus -p Description,Name,Value,HttpStatus,HttpStatus.Value,HttpStatus.Identifier ../http-status-codes/registry.rec registry.rec > combined.xtmp - if ! diff $@ combined.xtmp; then mv combined.xtmp $@; else rm combined.xtmp; fi + if ! diff $@ combined.xtmp > /dev/null; then mv combined.xtmp $@; else rm combined.xtmp; fi combined-escaped.tmp: combined.tmp sed 's/"/\\"/g' $^ > $@ |