svn commit: r264268 - head/sys/boot

Ed Maste emaste at FreeBSD.org
Tue Apr 8 19:19:59 UTC 2014


Author: emaste
Date: Tue Apr  8 19:19:58 2014
New Revision: 264268
URL: http://svnweb.freebsd.org/changeset/base/264268

Log:
  (Re)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	Tue Apr  8 18:27:46 2014	(r264267)
+++ head/sys/boot/Makefile	Tue Apr  8 19:19:58 2014	(r264268)
@@ -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>


More information about the svn-src-all mailing list