Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Jan 2011 22:44:42 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r217487 - projects/binutils-2.17/gnu/usr.bin/binutils/ld
Message-ID:  <201101162244.p0GMigHX079777@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sun Jan 16 22:44:42 2011
New Revision: 217487
URL: http://svn.freebsd.org/changeset/base/217487

Log:
  For ld, make sure the native emulation appears first in the list of
  emulations, instead of last.  This gives no functional difference, but
  it just looks more logical, and mimics what upstream binutils does.

Modified:
  projects/binutils-2.17/gnu/usr.bin/binutils/ld/Makefile

Modified: projects/binutils-2.17/gnu/usr.bin/binutils/ld/Makefile
==============================================================================
--- projects/binutils-2.17/gnu/usr.bin/binutils/ld/Makefile	Sun Jan 16 22:11:30 2011	(r217486)
+++ projects/binutils-2.17/gnu/usr.bin/binutils/ld/Makefile	Sun Jan 16 22:44:42 2011	(r217487)
@@ -48,10 +48,9 @@ ELF_SCR_EXT=	x xbn xc xd xdc xdw xn xr x
 LDSCRIPTS+=	${NATIVE_EMULATION}.${ext}
 .endfor
 
-EMS+=	 ${NATIVE_EMULATION}
 EMXFR=
 EMLST=
-.for _e in ${EMS}
+.for _e in ${NATIVE_EMULATION} ${EMS}
 EMXFR+=	extern ld_emulation_xfer_type ld_${_e}_emulation;
 EMLST+=	&ld_${_e}_emulation,
 .endfor



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