summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2015-03-27 17:15:52 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2015-03-27 17:18:30 +0100
commita32b453520b671b43b1ace492ad5f37270b0dfcd (patch)
tree591318995372618f2976c2a755ce88e92699f1b8 /Makefile
parentc444f374f7c920c5bb699a6e9ad3c526d29edd9b (diff)
Update list of buggy re2c versions
re2c 0.14.2 fixed the issue we were hitting.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9b6b78e..1ece8f7 100644
--- a/Makefile
+++ b/Makefile
@@ -101,9 +101,9 @@ $(SRCDIR)/case_fold_switch.inc: $(DATADIR)/CaseFolding-3.2.0.txt
# normally need to be generated.
$(SRCDIR)/scanners.c: $(SRCDIR)/scanners.re
@case "$$(re2c -v)" in \
- *\ 0.13.7*|*\ 0.14*) \
- echo $$(re2c -v) is known to produce buggy code.; \
- echo Try version 0.13.6 or below.; \
+ *\ 0.13.7*|*\ 0.14|*\ 0.14.1) \
+ echo "re2c versions 0.13.7 through 0.14.1 are known to produce buggy code."; \
+ echo "Try a version >= 0.14.2 or <= 0.13.6."; \
false; \
;; \
esac