Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Apr 2014 18:07:21 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r264132 - head/sys/boot
Message-ID:  <201404041807.s34I7LXU018799@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Fri Apr  4 18:07:21 2014
New Revision: 264132
URL: http://svnweb.freebsd.org/changeset/base/264132

Log:
  Connect sys/boot/amd64 to the build
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/boot/Makefile

Modified: head/sys/boot/Makefile
==============================================================================
--- head/sys/boot/Makefile	Fri Apr  4 17:58:33 2014	(r264131)
+++ head/sys/boot/Makefile	Fri Apr  4 18:07:21 2014	(r264132)
@@ -9,9 +9,12 @@ SUBDIR+=		ficl
 .endif
 
 # Pick the machine-dependent subdir based on the target architecture.
-ADIR=			${MACHINE:S/amd64/i386/:S/powerpc64/powerpc/}
+ADIR=			${MACHINE:S/powerpc64/powerpc/}
 .if exists(${.CURDIR}/${ADIR}/.)
 SUBDIR+=		${ADIR}
 .endif
+.if ${MACHINE} == "amd64"
+SUBDIR+=		i386
+.endif
 
 .include <bsd.subdir.mk>



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