svn commit: r281117 - head/sys/boot/efi/boot1

Andrew Turner andrew at FreeBSD.org
Sun Apr 5 18:57:59 UTC 2015


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


More information about the svn-src-head mailing list