From owner-svn-src-projects@FreeBSD.ORG Sun Jan 16 22:44:42 2011 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0C70106564A; Sun, 16 Jan 2011 22:44:42 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C03768FC13; Sun, 16 Jan 2011 22:44:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p0GMigse079779; Sun, 16 Jan 2011 22:44:42 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p0GMigHX079777; Sun, 16 Jan 2011 22:44:42 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201101162244.p0GMigHX079777@svn.freebsd.org> From: Dimitry Andric Date: Sun, 16 Jan 2011 22:44:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r217487 - projects/binutils-2.17/gnu/usr.bin/binutils/ld X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jan 2011 22:44:42 -0000 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