Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Feb 2013 22:25:56 +0000 (UTC)
From:      Dag-Erling Smørgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r247285 - head
Message-ID:  <201302252225.r1PMPuYJ046613@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Mon Feb 25 22:25:56 2013
New Revision: 247285
URL: http://svnweb.freebsd.org/changeset/base/247285

Log:
  In all situations where we need to bootstrap yacc, we also need to
  bootstrap liby.  This was not readily apparent, because a normal 'make
  buildworld' or 'make toolchain' builds liby before building anything
  that uses yacc.  However, 'make kernel-toolchain' does not build
  headers or libraries, so it was not possible to build a kernel from
  head on, say, stable/9 without first building the complete toolchain.
  
  MFC after:	1 week

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Mon Feb 25 20:51:29 2013	(r247284)
+++ head/Makefile.inc1	Mon Feb 25 22:25:56 2013	(r247285)
@@ -1132,7 +1132,8 @@ _lex=		usr.bin/lex
 .endif
 
 .if ${BOOTSTRAPPING} < 1000013
-_yacc=		usr.bin/yacc
+_yacc=		lib/liby \
+		usr.bin/yacc
 .endif
 
 .if ${BOOTSTRAPPING} < 1000026



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