From patchwork Tue Dec 23 18:50:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Schwinge X-Patchwork-Id: 423780 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 36374140081 for ; Wed, 24 Dec 2014 05:51:09 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; q=dns; s=default; b=G1e9knQauiZZMqMFbKh4JIm6hU1HVfpOnB5W7NBkhpxDTLV5EW BGyksis0o+hTItvnfXvUVU7UlisEX6iFVA1WFCe0+Gr+gIl0A6DWbSfItsk/cYCl Hd21y/HLxxWi762K4G/8WpmxHwAf1/Vt4xWbAMnrEy6+Jb2syyNqkE9wE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id:mime-version:content-type; s= default; bh=2/KM8zLfbsmA48Na1ObDsxGSekM=; b=aiyHTbQsBRyoWEh789zj Ox5BFYbarB6Kgsj+ZUbuMstsedgSHlC6mRKDRGZ7paePdEZ5Edkn0VI7coInUI3H 3RyNGCbPJWTgyJ5e9wv92i7yqVWBLHxralGU6jeAiiJB9pu23sb1ZgyBiJPGjwgK 0fBD5Ex+j5klomU3AXotbxE= Received: (qmail 20863 invoked by alias); 23 Dec 2014 18:51:03 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 20836 invoked by uid 89); 23 Dec 2014 18:50:58 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.5 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS, T_FROM_12LTRDOM autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Dec 2014 18:50:57 +0000 Received: from svr-orw-fem-06.mgc.mentorg.com ([147.34.97.120]) by relay1.mentorg.com with esmtp id 1Y3UXl-000180-IJ from Thomas_Schwinge@mentor.com for gcc-patches@gcc.gnu.org; Tue, 23 Dec 2014 10:50:53 -0800 Received: from build5-lucid-cs (147.34.91.1) by SVR-ORW-FEM-06.mgc.mentorg.com (147.34.97.120) with Microsoft SMTP Server id 14.3.224.2; Tue, 23 Dec 2014 10:50:53 -0800 Received: by build5-lucid-cs (Postfix, from userid 49978) id D4884321ABB; Tue, 23 Dec 2014 10:50:52 -0800 (PST) From: Thomas Schwinge To: CC: Bernd Schmidt , Thomas Schwinge Subject: [nvptx-tools, committed] Also install [...]/nvptx-none/bin/ar and [...]/nvptx-none/bin/ranlib. Date: Tue, 23 Dec 2014 19:50:23 +0100 Message-ID: <1419360623-1622-1-git-send-email-thomas@codesourcery.com> MIME-Version: 1.0 GCC needs this, if nvptx-none-ar and nvptx-none-ranlib aren't found in $PATH. --- tools/Makefile.in | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git tools/Makefile.in tools/Makefile.in index 6829e29..8dcedbc 100644 --- tools/Makefile.in +++ tools/Makefile.in @@ -45,11 +45,15 @@ install: all for x in $(PROGRAMS); do \ $(INSTALL_PROGRAM) -m 755 $$x $(DESTDIR)$(bindir)/$$x; \ done - rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/as - rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/ld rm -f $(DESTDIR)$(bindir)/nvptx-none-ar rm -f $(DESTDIR)$(bindir)/nvptx-none-ranlib - $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-as $(DESTDIR)$(prefix)/nvptx-none/bin/as - $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-ld $(DESTDIR)$(prefix)/nvptx-none/bin/ld $(LN_S) $(AR) $(DESTDIR)$(bindir)/nvptx-none-ar $(LN_S) $(RANLIB) $(DESTDIR)$(bindir)/nvptx-none-ranlib + rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/ar + rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/as + rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/ld + rm -f $(DESTDIR)$(prefix)/nvptx-none/bin/ranlib + $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-ar $(DESTDIR)$(prefix)/nvptx-none/bin/ar + $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-as $(DESTDIR)$(prefix)/nvptx-none/bin/as + $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-ld $(DESTDIR)$(prefix)/nvptx-none/bin/ld + $(LN_S) $(DESTDIR)$(bindir)/nvptx-none-ranlib $(DESTDIR)$(prefix)/nvptx-none/bin/ranlib