From dcb39af8c0860abea04bce9d5fa502fd7ba9e2b6 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Mon, 17 Oct 2016 18:47:55 -0700 Subject: [PATCH] Fix lexicon_filter verbosity the `mv $@.tmp $@; test -x $@ || chmod a+x $@;` bit was printing out. --- Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index ee373324d..adea719c5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -453,8 +453,9 @@ lexicon_filter: lexicon.txt lexicon_filter.in | show-SED WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \ else \ WORDBL='\\<'; WORDBR='\\>'; \ - fi; $(SED) >$@.tmp -n -e "s|^\([a-z][a-z][a-z][a-z]\) \([a-z_-]*\)$$|s,$$WORDBL\2$$WORDBR,@\1{\2},g|p" -e '$$G;s/.*\n/b tidy/p'; - mv $@.tmp $@; test -x $@ || chmod a+x $@; + fi + $v $(SED) >$@.tmp -n -e "s|^\([a-z][a-z][a-z][a-z]\) \([a-z_-]*\)$$|s,$$WORDBL\2$$WORDBR,@\1{\2},g|p" -e '$$G;s/.*\n/b tidy/p' + $v mv $@.tmp $@; test -x $@ || chmod a+x $@; #