From 100a0ea549ba6909328d2eccf98d2524c3fd6e18 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Sat, 22 Oct 2016 18:23:03 -0700 Subject: [PATCH] Revert "Fix lexicon_filter verbosity" This reverts commit dcb39af8c0860abea04bce9d5fa502fd7ba9e2b6. It breaks building the documentation because splitting the sed invocation in the `lexicon_filter` target from the preceding `if` block means the `WORDBL` and `WORDBR` shell vars aren't available. --- Makefile.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 243d8fde4..30f2f3372 100644 --- a/Makefile.in +++ b/Makefile.in @@ -453,9 +453,8 @@ lexicon_filter: lexicon.txt lexicon_filter.in | show-SED WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \ else \ WORDBL='\\<'; WORDBR='\\>'; \ - 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 $@; + 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 $@; #