aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/starter/Makefile.am2
-rw-r--r--src/stroke/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/starter/Makefile.am b/src/starter/Makefile.am
index 7c84a256b..a859c33b6 100644
--- a/src/starter/Makefile.am
+++ b/src/starter/Makefile.am
@@ -40,7 +40,7 @@ y.tab.h: $(srcdir)/parser.y $(srcdir)/parser.l $(srcdir)/parser.h
$(YACC) -v -d $(srcdir)/parser.y
keywords.c: $(srcdir)/keywords.txt $(srcdir)/keywords.h
- $(GPERF) -C -G -D -t < $(srcdir)/keywords.txt > $@
+ $(GPERF) -m 10 -C -G -D -t < $(srcdir)/keywords.txt > $@
defs.o: $(PLUTODIR)/defs.c $(PLUTODIR)/defs.h
$(COMPILE) -c -o $@ $(PLUTODIR)/defs.c
diff --git a/src/stroke/Makefile.am b/src/stroke/Makefile.am
index 22f317f8f..afca95fce 100644
--- a/src/stroke/Makefile.am
+++ b/src/stroke/Makefile.am
@@ -8,4 +8,4 @@ MAINTAINERCLEANFILES = stroke_keywords.c
AM_CFLAGS = -DIPSEC_PIDDIR=\"${piddir}\"
stroke_keywords.c: $(srcdir)/stroke_keywords.txt $(srcdir)/stroke_keywords.h
- $(GPERF) -D -C -G -t < $(srcdir)/stroke_keywords.txt > $@
+ $(GPERF) -m 10 -D -C -G -t < $(srcdir)/stroke_keywords.txt > $@