Date: Sun, 5 Apr 2015 18:57:59 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r281117 - head/sys/boot/efi/boot1 Message-ID: <201504051857.t35IvxZs095863@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: andrew Date: Sun Apr 5 18:57:58 2015 New Revision: 281117 URL: https://svnweb.freebsd.org/changeset/base/281117 Log: Move boot1.efi to the global CLEANFILES list, it's not x86 specific. Modified: head/sys/boot/efi/boot1/Makefile Modified: head/sys/boot/efi/boot1/Makefile ============================================================================== --- head/sys/boot/efi/boot1/Makefile Sun Apr 5 18:53:48 2015 (r281116) +++ head/sys/boot/efi/boot1/Makefile Sun Apr 5 18:57:58 2015 (r281117) @@ -71,7 +71,7 @@ boot1.efifat: boot1.efi bzip2 -f -d ${.TARGET}.bz2 dd if=boot1.efi of=${.TARGET} seek=${BOOT1_OFFSET} conv=notrunc -CLEANFILES= boot1.efifat +CLEANFILES= boot1.efi boot1.efifat .endif # ${COMPILER_TYPE} != "gcc" @@ -80,7 +80,7 @@ CLEANFILES= boot1.efifat .if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" beforedepend ${OBJS}: machine x86 -CLEANFILES+= machine x86 boot1.efi +CLEANFILES+= machine x86 machine: ln -sf ${.CURDIR}/../../../amd64/include machine
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504051857.t35IvxZs095863>