svn commit: r209162 - head/sys/boot/i386/pxeldr

Roman Divacky rdivacky at FreeBSD.org
Mon Jun 14 17:02:20 UTC 2010


Author: rdivacky
Date: Mon Jun 14 17:02:19 2010
New Revision: 209162
URL: http://svn.freebsd.org/changeset/base/209162

Log:
  Pass the -N flag to linked via -Wl.
  
  Approved by:	ed (mentor)

Modified:
  head/sys/boot/i386/pxeldr/Makefile

Modified: head/sys/boot/i386/pxeldr/Makefile
==============================================================================
--- head/sys/boot/i386/pxeldr/Makefile	Mon Jun 14 16:05:21 2010	(r209161)
+++ head/sys/boot/i386/pxeldr/Makefile	Mon Jun 14 17:02:19 2010	(r209162)
@@ -32,7 +32,7 @@ ${BOOT}: ${LDR} ${LOADER}
 	dd if=${.TARGET}.tmp of=${.TARGET} obs=2k conv=osync
 	rm ${.TARGET}.tmp
 
-LDFLAGS+= -N -e start -Ttext ${ORG} -Wl,-S,--oformat,binary
+LDFLAGS+=-e start -Ttext ${ORG} -Wl,-N,-S,--oformat,binary
 
 CLEANFILES+= ${LOADER}
 


More information about the svn-src-head mailing list