From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6277 invoked by alias); 20 May 2014 21:17:35 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 6263 invoked by uid 89); 20 May 2014 21:17:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: bastet.se.axis.com Received: from bastet.se.axis.com (HELO bastet.se.axis.com) (195.60.68.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 20 May 2014 21:17:33 +0000 Received: from localhost (localhost [127.0.0.1]) by bastet.se.axis.com (Postfix) with ESMTP id B492918151 for ; Tue, 20 May 2014 23:17:29 +0200 (CEST) Received: from bastet.se.axis.com ([IPv6:::ffff:127.0.0.1]) by localhost (bastet.se.axis.com [::ffff:127.0.0.1]) (amavisd-new, port 10024) with LMTP id HGx+1IYj2cvv for ; Tue, 20 May 2014 23:17:24 +0200 (CEST) Received: from boulder.se.axis.com (boulder.se.axis.com [10.0.2.104]) by bastet.se.axis.com (Postfix) with ESMTP id 89D3E1813D for ; Tue, 20 May 2014 23:17:24 +0200 (CEST) Received: from boulder.se.axis.com (localhost [127.0.0.1]) by postfix.imss71 (Postfix) with ESMTP id 70B29CFC for ; Tue, 20 May 2014 23:17:24 +0200 (CEST) Received: from seth.se.axis.com (seth.se.axis.com [10.0.2.172]) by boulder.se.axis.com (Postfix) with ESMTP id 651107F8 for ; Tue, 20 May 2014 23:17:24 +0200 (CEST) Received: from ignucius.se.axis.com (ignucius.se.axis.com [10.88.21.50]) by seth.se.axis.com (Postfix) with ESMTP id 573D43E048; Tue, 20 May 2014 23:17:24 +0200 (CEST) Received: from ignucius.se.axis.com (localhost [127.0.0.1]) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) with ESMTP id s4KLHOQD007151; Tue, 20 May 2014 23:17:24 +0200 Received: (from hp@localhost) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) id s4KLHN8T007147; Tue, 20 May 2014 23:17:23 +0200 Date: Tue, 20 May 2014 21:17:00 -0000 Message-Id: <201405202117.s4KLHN8T007147@ignucius.se.axis.com> From: Hans-Peter Nilsson To: binutils@sourceware.org Subject: Committed, ld: add missing target to ALL_EMULATION_SOURCES. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT X-SW-Source: 2014-05/txt/msg00186.txt.bz2 Changing the proposed patch to use the explicit all-emulations list, naturally revealed the assumption that this was up-to-date, to be false. There may be more. Committed as obvious after building. ld: * Makefile.am (ALL_EMULATION_SOURCES): Add missing eelf32mbel_linux.c. * Makefile.in: Regenerate. diff --git a/ld/Makefile.am b/ld/Makefile.am index 2ad6a45..1ff1e0a 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -238,6 +238,7 @@ ALL_EMULATION_SOURCES = \ eelf32lppcsim.c \ eelf32m32c.c \ eelf32mb_linux.c \ + eelf32mbel_linux.c \ eelf32mcore.c \ eelf32mep.c \ eelf32metag.c \ brgds, H-P