svn commit: r247533 - projects/uefi/sys/boot
Benno Rice
benno at FreeBSD.org
Fri Mar 1 07:01:25 UTC 2013
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>
More information about the svn-src-projects
mailing list