Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jun 2019 22:56:55 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r348763 - head/stand/efi/boot1
Message-ID:  <201906062256.x56Mutua082379@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906062256.x56Mutua082379>