From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1176 invoked by alias); 8 Dec 2002 22:16:50 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1169 invoked from network); 8 Dec 2002 22:16:49 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 8 Dec 2002 22:16:49 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 064B63E2E; Sun, 8 Dec 2002 17:16:36 -0500 (EST) Message-ID: <3DF3C4C3.6030809@redhat.com> Date: Sun, 08 Dec 2002 14:32:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: DJ Delorie Cc: neroden@twcny.rr.com, gdb-patches@sources.redhat.com, gcc-patches@gcc.gnu.org Subject: Re: sim/gdb dependency References: <3DF24E38.7020908@redhat.com> <200212080003.gB803BT32520@greed.delorie.com> Content-Type: multipart/mixed; boundary="------------080900010009040508030003" X-SW-Source: 2002-12/txt/msg00258.txt.bz2 This is a multi-part message in MIME format. --------------080900010009040508030003 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 455 Try this, >> Makefile.in to read something like: >> all-sim: configure-sim configure-gdb >> and that fixed the problem. (But I'm not sure how to do this from scratch). > > > That line should be identical between Makefile.tpl and Makefile.in. > You should be able to hand-tweak them both. > > If you want to post a patch, I'll apply it. Please include > gcc-patches@gcc.gnu.org so I can do that side also. I think I found the right place. Andrew --------------080900010009040508030003 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1549 2002-12-08 Andrew Cagney * Makefile.tpl (all-sim): Depend on maybe-configure-gdb. * Makefile.in (all-sim): Ditto. Index: Makefile.tpl =================================================================== RCS file: /cvs/src/src/Makefile.tpl,v retrieving revision 1.24 diff -u -r1.24 Makefile.tpl --- Makefile.tpl 6 Dec 2002 20:11:59 -0000 1.24 +++ Makefile.tpl 8 Dec 2002 22:01:36 -0000 @@ -1312,7 +1312,7 @@ install-itcl: maybe-install-tcl all-sid: maybe-all-tcl maybe-all-tk install-sid: maybe-install-tcl maybe-install-tk -all-sim: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-readline +all-sim: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-readline maybe-configure-gdb configure-tk: maybe-configure-tcl all-tk: maybe-all-tcl configure-tix: maybe-configure-tcl maybe-configure-tk Index: Makefile.in =================================================================== RCS file: /cvs/src/src/Makefile.in,v retrieving revision 1.90 diff -u -r1.90 Makefile.in --- Makefile.in 6 Dec 2002 20:11:59 -0000 1.90 +++ Makefile.in 8 Dec 2002 22:11:14 -0000 @@ -7707,7 +7707,7 @@ install-itcl: maybe-install-tcl all-sid: maybe-all-tcl maybe-all-tk install-sid: maybe-install-tcl maybe-install-tk -all-sim: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-readline +all-sim: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-readline maybe-configure-gdb configure-tk: maybe-configure-tcl all-tk: maybe-all-tcl configure-tix: maybe-configure-tcl maybe-configure-tk --------------080900010009040508030003--