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

Ed Maste emaste at FreeBSD.org
Tue Mar 8 17:45:57 UTC 2016


Author: emaste
Date: Tue Mar  8 17:45:56 2016
New Revision: 296517
URL: https://svnweb.freebsd.org/changeset/base/296517

Log:
  boot1.efi: use += to append to LDFLAGS
  
  This is for consistency with loader.efi's Makefile and simplifies some
  out-of-tree experimentation.

Modified:
  head/sys/boot/efi/boot1/Makefile

Modified: head/sys/boot/efi/boot1/Makefile
==============================================================================
--- head/sys/boot/efi/boot1/Makefile	Tue Mar  8 17:43:21 2016	(r296516)
+++ head/sys/boot/efi/boot1/Makefile	Tue Mar  8 17:45:56 2016	(r296517)
@@ -53,7 +53,7 @@ FILES=	boot1.efi boot1.efifat
 FILESMODE_boot1.efi=	${BINMODE}
 
 LDSCRIPT=	${.CURDIR}/../loader/arch/${MACHINE}/ldscript.${MACHINE}
-LDFLAGS=	-Wl,-T${LDSCRIPT} -Wl,-Bsymbolic -shared
+LDFLAGS+=	-Wl,-T${LDSCRIPT} -Wl,-Bsymbolic -shared
 
 .if ${MACHINE_CPUARCH} == "aarch64"
 CFLAGS+=	-msoft-float -mgeneral-regs-only


More information about the svn-src-all mailing list