svn commit: r288230 - head/gnu/usr.bin/binutils/ld

Bryan Drewery bdrewery at FreeBSD.org
Fri Sep 25 20:21:46 UTC 2015


Author: bdrewery
Date: Fri Sep 25 20:21:45 2015
New Revision: 288230
URL: https://svnweb.freebsd.org/changeset/base/288230

Log:
  Fix emulation ldscripts not being installed since r131832.
  
  For example, 32bit scripts on 64bit host.
  
  MFC after:	2 weeks
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/gnu/usr.bin/binutils/ld/Makefile

Modified: head/gnu/usr.bin/binutils/ld/Makefile
==============================================================================
--- head/gnu/usr.bin/binutils/ld/Makefile	Fri Sep 25 19:46:34 2015	(r288229)
+++ head/gnu/usr.bin/binutils/ld/Makefile	Fri Sep 25 20:21:45 2015	(r288230)
@@ -1,5 +1,6 @@
 # $FreeBSD$
 
+ELF_SCR_EXT=	x xbn xc xd xdc xdw xn xr xs xsc xsw xu xw
 .include "../Makefile.inc0"
 .include <src.opts.mk>
 
@@ -50,7 +51,6 @@ FILESDIR=	${SCRIPTDIR}
 
 HOST=		${TARGET_TUPLE}
 LIBSEARCHPATH=	\"${TOOLS_PREFIX}/lib\":\"${TOOLS_PREFIX}/usr/lib\"
-ELF_SCR_EXT=	x xbn xc xd xdc xdw xn xr xs xsc xsw xu xw
 .for ext in ${ELF_SCR_EXT}
 LDSCRIPTS+=	${NATIVE_EMULATION}.${ext}
 .endfor


More information about the svn-src-all mailing list