svn commit: r348763 - head/stand/efi/boot1

Warner Losh imp at FreeBSD.org
Thu Jun 6 22:56:56 UTC 2019


Author: imp
Date: Thu Jun  6 22:56:55 2019
New Revision: 348763
URL: https://svnweb.freebsd.org/changeset/base/348763

Log:
  Fix when NOFAT is defined
  
  We need to add the *efi file to the list of things that get built,
  even if we're not creating the efifat stuff.

Modified:
  head/stand/efi/boot1/Makefile

Modified: head/stand/efi/boot1/Makefile
==============================================================================
--- head/stand/efi/boot1/Makefile	Thu Jun  6 21:25:46 2019	(r348762)
+++ head/stand/efi/boot1/Makefile	Thu Jun  6 22:56:55 2019	(r348763)
@@ -56,9 +56,10 @@ CFLAGS+=	-DEFI_DEBUG
 .PATH:		${EFISRC}/libefi
 CFLAGS+=	-I${LDRSRC}
 
-.ifndef(NOFAT)
-FILES=	${BOOT1}.efi ${BOOT1}.efifat
+FILES=	${BOOT1}.efi
 FILESMODE_${BOOT1}.efi=	${BINMODE}
+.ifndef(NOFAT)
+FILES+= ${BOOT1}.efifat
 .endif
 
 LDSCRIPT=	${EFISRC}/loader/arch/${MACHINE}/ldscript.${MACHINE}


More information about the svn-src-all mailing list