svn commit: r217487 - projects/binutils-2.17/gnu/usr.bin/binutils/ld
Dimitry Andric
dim at FreeBSD.org
Sun Jan 16 22:44:42 UTC 2011
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
More information about the svn-src-projects
mailing list