From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31798 invoked by alias); 18 Jun 2003 21:24:12 -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 15427 invoked from network); 18 Jun 2003 21:16:23 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 18 Jun 2003 21:16:23 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h5ILGNH30954; Wed, 18 Jun 2003 17:16:23 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5ILGNI32321; Wed, 18 Jun 2003 17:16:23 -0400 Received: from [150.1.200.14] (vpn50-32.rdu.redhat.com [172.16.50.32]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h5ILGMZ06589; Wed, 18 Jun 2003 17:16:22 -0400 Subject: [RFA] Makefile.tpl: Add maybe-configure-itcl to configure-gdb From: Keith Seitz To: binutils@sources.redhat.com, "gdb-patches@sources.redhat.com" Content-Type: multipart/mixed; boundary="=-uv1Z+Znv+rhJWZ40MWzo" Organization: Message-Id: <1055971488.2789.133.camel@lindt.uglyboxes.com> Mime-Version: 1.0 Date: Wed, 18 Jun 2003 21:24:00 -0000 X-SW-Source: 2003-06/txt/msg00599.txt.bz2 --=-uv1Z+Znv+rhJWZ40MWzo Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 536 Hi, Turns out this build problem has been around for a while. I wasn't seeing it because I kept an installed version of our tools around. Sure enough, as soon as I removed the installed version, there was the problem. Synopsis: do a "make configure-gdb" when you intend to build insight. You won't get itcl configured, and consequently, insight won't build. Keith ChangeLog 2003-06-18 Keith Seitz * Makefile.tpl: Add maybe-configure-itcl to configure-gdb. * Makefile.in: Regenerate. --=-uv1Z+Znv+rhJWZ40MWzo Content-Disposition: attachment; filename=itcl.patch Content-Type: text/x-patch; name=itcl.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 903 Index: Makefile.tpl =================================================================== RCS file: /cvs/src/src/Makefile.tpl,v retrieving revision 1.71 diff -u -p -r1.71 Makefile.tpl --- Makefile.tpl 17 Jun 2003 21:59:09 -0000 1.71 +++ Makefile.tpl 18 Jun 2003 21:11:24 -0000 @@ -1353,7 +1353,7 @@ all-bootstrap: maybe-all-libiberty maybe # Host modules specific to gdb. # GDB needs to know that the simulator is being built. -configure-gdb: maybe-configure-tcl maybe-configure-tk maybe-configure-sim +configure-gdb: maybe-configure-itcl maybe-configure-tcl maybe-configure-tk maybe-configure-sim GDB_TK = @GDB_TK@ all-gdb: maybe-all-libiberty maybe-all-opcodes maybe-all-bfd maybe-all-mmalloc maybe-all-readline maybe-all-bison maybe-all-byacc maybe-all-sim $(gdbnlmrequirements) $(GDB_TK) install-gdb: maybe-install-tcl maybe-install-tk maybe-install-itcl maybe-install-tix maybe-install-libgui --=-uv1Z+Znv+rhJWZ40MWzo--