From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 101993 invoked by alias); 13 Apr 2015 14:35:34 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 101983 invoked by uid 89); 13 Apr 2015 14:35:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD 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; Mon, 13 Apr 2015 14:35:33 +0000 Received: from localhost (localhost [127.0.0.1]) by bastet.se.axis.com (Postfix) with ESMTP id 779BE180A1; Mon, 13 Apr 2015 16:35:30 +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 BQFYAbeLR6+c; Mon, 13 Apr 2015 16:35:29 +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 E9D8718074; Mon, 13 Apr 2015 16:35:29 +0200 (CEST) Received: from boulder.se.axis.com (localhost [127.0.0.1]) by postfix.imss71 (Postfix) with ESMTP id C80A51272; Mon, 13 Apr 2015 16:35:29 +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 BCC5BAC6; Mon, 13 Apr 2015 16:35:29 +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 B971F3E049; Mon, 13 Apr 2015 16:35:29 +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 t3DEZTBc012536; Mon, 13 Apr 2015 16:35:29 +0200 Received: (from hp@localhost) by ignucius.se.axis.com (8.12.8p1/8.12.8/Debian-2woody1) id t3DEZTAS012532; Mon, 13 Apr 2015 16:35:29 +0200 Date: Mon, 13 Apr 2015 14:35:00 -0000 Message-Id: <201504131435.t3DEZTAS012532@ignucius.se.axis.com> From: Hans-Peter Nilsson To: vapier@gentoo.org CC: gdb-patches@sourceware.org Subject: breakage with "switch to gdb version script" MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT X-SW-Source: 2015-04/txt/msg00460.txt.bz2 This commit: commit 8c32ba22334b8be1c2cf412a789deeded786e1f5 Author: Mike Frysinger Date: Fri Apr 10 19:40:54 2015 -0400 sim: switch to gdb version script Since the local create-version.sh already points directly into the gdb source tree, we might as well use the gdb script directly too. sim/common/ChangeLog | 5 +++++ sim/common/Make-common.in | 5 +++-- sim/common/create-version.sh | 38 -------------------------------------- 3 files changed, 8 insertions(+), 40 deletions(-) seems to have caused breakage building a sim for powerpc-unknown-eabisim: ... make[3]: *** No rule to make target `/tmp/hpautotest-sim/src/sim/ppc/../common/create-version.sh', needed by `version.c'. Stop. make[3]: Leaving directory `/tmp/hpautotest-sim/powerpc-eabisim/sim/ppc' make[2]: *** [all] Error 1make[2]: Leaving directory `/tmp/hpautotest-sim/powerpc-eabisim/sim' While that seems pretty trivial, you also need to adjust src-release.sh to make sure "./src-release.sh -b sim" works, in which a tool-specific create-version.sh is searched. brgds, H-P