mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
unposted: update 31983 to suppress stdout from cmp, too.
Gets rid of unnecessary messages building patchlevel.h.
This commit is contained in:
parent
1fc259363f
commit
a0c9da72f2
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-01-27 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* unposted: Src/zsh.mdd: update 31983 to suppress stdout from
|
||||
cmp, too.
|
||||
|
||||
2014-01-23 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
* unposted: Doc/Zsh/arith.yo: use LPAR() instead of parens
|
||||
|
|
|
@ -44,7 +44,7 @@ patchlevel.h: FORCE
|
|||
cp -f $(sdir)/$@.release $@; \
|
||||
else \
|
||||
echo '#define ZSH_PATCHLEVEL "'`cd $(sdir) && git describe --tags --long`'"' > $@.tmp; \
|
||||
cmp $@ $@.tmp 2>/dev/null && rm -f $@.tmp || mv $@.tmp $@; \
|
||||
cmp $@ $@.tmp >/dev/null 2>&1 && rm -f $@.tmp || mv $@.tmp $@; \
|
||||
fi
|
||||
FORCE:
|
||||
|
||||
|
|
Loading…
Reference in a new issue