From 9c633deb709968f14f6d9e6bbae0d6c9a52fb5cf Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Wed, 18 Feb 2015 23:10:15 +0000 Subject: [PATCH] Fix bootstrap on systems with old yacc with small MAXTABLE. --- Makefile.inc1 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index f4795d409a3c..10696307f813 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1247,11 +1247,6 @@ _m4= lib/libohash \ usr.bin/m4 .endif -.if ${BOOTSTRAPPING} < 1000013 -_yacc= lib/liby \ - usr.bin/yacc -.endif - .if ${BOOTSTRAPPING} < 1000014 _crunch= usr.sbin/crunch .endif @@ -1273,6 +1268,11 @@ _lex= usr.bin/lex _awk= usr.bin/awk .endif +.if ${BOOTSTRAPPING} < 1001506 +_yacc= lib/liby \ + usr.bin/yacc +.endif + .if ${MK_BSNMP} != "no" _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif