aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Kevin Ballard <kevin@sb.org>2014-10-01 18:02:01 -0700
committerGravatar Kevin Ballard <kevin@sb.org>2014-10-01 18:19:38 -0700
commit47c357a354447ff2f378fedaf0dcb100ce256381 (patch)
tree092ecf63719bdf7823e9b7bd490e8b918a3b482b /Makefile.in
parentb592da41f6b71e884a8576b03cef467001fc3c46 (diff)
Tweak lexicon_filter.in for GNU sed
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index c4decc58..83bce603 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -414,7 +414,7 @@ lexicon_filter: lexicon.txt lexicon_filter.in
if echo x | $(SED) "/[[:<:]]x/d" 2>/dev/null; then \
WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \
else \
- WORDBL='\<'; WORDBR='\>'; \
+ WORDBL='\\<'; WORDBR='\\>'; \
fi; \
$(SED) <lexicon.txt >>$@.tmp -n \
-e "s|^\([a-z][a-z][a-z][a-z]\) \([a-z_-]*\)$$|s,$$WORDBL\2$$WORDBR,@\1{\2},g|p" \