Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Mar 2013 07:01:24 +0000 (UTC)
From:      Benno Rice <benno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r247533 - projects/uefi/sys/boot
Message-ID:  <201303010701.r2171O5f034274@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: benno
Date: Fri Mar  1 07:01:24 2013
New Revision: 247533
URL: http://svnweb.freebsd.org/changeset/base/247533

Log:
  Build the amd64 loader stuff as well as the i386 stuff if we're on amd64.

Modified:
  projects/uefi/sys/boot/Makefile

Modified: projects/uefi/sys/boot/Makefile
==============================================================================
--- projects/uefi/sys/boot/Makefile	Fri Mar  1 07:00:11 2013	(r247532)
+++ projects/uefi/sys/boot/Makefile	Fri Mar  1 07:01:24 2013	(r247533)
@@ -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?201303010701.r2171O5f034274>