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}
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to