Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 May 2012 00:21:27 +0000 (UTC)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r236131 - stable/8
Message-ID:  <201205270021.q4R0LRGY015487@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Sun May 27 00:21:27 2012
New Revision: 236131
URL: http://svn.freebsd.org/changeset/base/236131

Log:
  Make yacc a bootstrap tool if building on head, since the new yacc is
  not 100% backward compatible.

Modified:
  stable/8/Makefile.inc1

Modified: stable/8/Makefile.inc1
==============================================================================
--- stable/8/Makefile.inc1	Sat May 26 23:58:51 2012	(r236130)
+++ stable/8/Makefile.inc1	Sun May 27 00:21:27 2012	(r236131)
@@ -934,6 +934,10 @@ _ar=		usr.bin/ar
 _lex=		usr.bin/lex
 .endif
 
+.if ${BOOTSTRAPPING} >= 1000013
+_yacc=		usr.bin/yacc
+.endif
+
 .if ${BOOTSTRAPPING} < 800013
 _mklocale=	usr.bin/mklocale
 .endif
@@ -959,6 +963,7 @@ bootstrap-tools:
     ${_gperf} \
     ${_groff} \
     ${_ar} \
+    ${_yacc} \
     ${_lex} \
     usr.bin/lorder \
     usr.bin/makewhatis \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205270021.q4R0LRGY015487>