svn commit: r293353 - stable/10/sys/boot
Oliver Pinter
oliver.pinter at hardenedbsd.org
Thu Jan 7 21:21:30 UTC 2016
On Thu, Jan 7, 2016 at 9:34 PM, Ed Maste <emaste at freebsd.org> wrote:
> Author: emaste
> Date: Thu Jan 7 20:34:06 2016
> New Revision: 293353
> URL: https://svnweb.freebsd.org/changeset/base/293353
>
> Log:
> MFC r280808 by andrew: Reorder sys/boot/Makefile for the efi loader move
Thanks Ed! This commit is the real fix, and not the previous one what
I mentioned.
>
> As these will depend on ficl having been built, and are set via
> bsd.arch.inc.mk we need to place this after ficl.
>
> As Makefile.amd64 is now late enough we can add the i386 directory to
> this.
>
> Modified:
> stable/10/sys/boot/Makefile
> stable/10/sys/boot/Makefile.amd64
> Directory Properties:
> stable/10/ (props changed)
>
> Modified: stable/10/sys/boot/Makefile
> ==============================================================================
> --- stable/10/sys/boot/Makefile Thu Jan 7 20:32:04 2016 (r293352)
> +++ stable/10/sys/boot/Makefile Thu Jan 7 20:34:06 2016 (r293353)
> @@ -1,7 +1,6 @@
> # $FreeBSD$
>
> .include <bsd.own.mk>
> -.include <bsd.arch.inc.mk>
>
> .if ${MK_FORTH} != "no"
> # Build the add-in FORTH interpreter.
> @@ -9,13 +8,12 @@ SUBDIR+= ficl
> SUBDIR+= forth
> .endif
>
> +.include <bsd.arch.inc.mk>
> +
> # Pick the machine-dependent subdir based on the target architecture.
> ADIR= ${MACHINE:S/powerpc64/powerpc/}
> .if exists(${.CURDIR}/${ADIR}/.)
> SUBDIR+= ${ADIR}
> .endif
> -.if ${MACHINE} == "amd64"
> -SUBDIR+= i386
> -.endif
>
> .include <bsd.subdir.mk>
>
> Modified: stable/10/sys/boot/Makefile.amd64
> ==============================================================================
> --- stable/10/sys/boot/Makefile.amd64 Thu Jan 7 20:32:04 2016 (r293352)
> +++ stable/10/sys/boot/Makefile.amd64 Thu Jan 7 20:34:06 2016 (r293353)
> @@ -8,3 +8,5 @@ SUBDIR+= userboot
> .if ${MK_FORTH} != "no"
> SUBDIR+= ficl32
> .endif
> +
> +SUBDIR+= i386
> _______________________________________________
> svn-src-stable-10 at freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
> To unsubscribe, send any mail to "svn-src-stable-10-unsubscribe at freebsd.org"
More information about the svn-src-stable-10
mailing list