Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 May 2012 02:08:53 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r235637 - head
Message-ID:  <201205190208.q4J28rKM093329@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Sat May 19 02:08:52 2012
New Revision: 235637
URL: http://svn.freebsd.org/changeset/base/235637

Log:
  Fix bootstrapping from FreeBSD 7.x: we also need to build ar.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri May 18 23:29:30 2012	(r235636)
+++ head/Makefile.inc1	Sat May 19 02:08:52 2012	(r235637)
@@ -1007,6 +1007,10 @@ _gperf=		gnu/usr.bin/gperf
 _groff=		gnu/usr.bin/groff
 .endif
 
+.if ${BOOTSTRAPPING} < 800022
+_ar=		usr.bin/ar
+.endif
+
 .if ${BOOTSTRAPPING} < 800013
 _mklocale=	usr.bin/mklocale
 .endif
@@ -1069,6 +1073,7 @@ bootstrap-tools:
     ${_strfile} \
     ${_gperf} \
     ${_groff} \
+    ${_ar} \
     ${_dtc} \
     ${_awk} \
     usr.bin/lorder \



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