From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22213 invoked by alias); 29 Aug 2002 19:09:17 -0000 Mailing-List: contact cgen-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cgen-owner@sources.redhat.com Received: (qmail 22152 invoked from network); 29 Aug 2002 19:09:16 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 29 Aug 2002 19:09:16 -0000 Received: from redhat.com (topaz.toronto.redhat.com [172.16.14.227]) by touchme.toronto.redhat.com (Postfix) with ESMTP id C75DFB8832; Thu, 29 Aug 2002 15:09:13 -0400 (EDT) Message-ID: <3D6E7159.A7593665@redhat.com> Date: Thu, 29 Aug 2002 12:09:00 -0000 From: Dave Brolley Organization: Red Hat Canada, Ltd X-Accept-Language: en MIME-Version: 1.0 To: cgen@sources.redhat.com, gdb-patches@sources.redhat.com Subject: [patch][rfa] sim/common/Make-common.in Content-Type: multipart/mixed; boundary="------------B159FE6FDB1EF6071691A00A" X-SW-Source: 2002-q3/txt/msg00031.txt.bz2 This is a multi-part message in MIME format. --------------B159FE6FDB1EF6071691A00A Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 314 Hi, The attached patch removes ../../cgen/stamp-cgen from the variable CGEN_READ_SCM. Since cgen is no longer a part of host_tools in the top-level configury, the cgen directory no longer gets configured and this target no longer exists. Ben: This is the patch I mentioned to you yesterday. OK to commit? Dave --------------B159FE6FDB1EF6071691A00A Content-Type: text/plain; charset=us-ascii; name="sim-common.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sim-common.ChangeLog" Content-length: 114 2002-08-29 Dave Brolley * Make-common.in (CGEN_READ_SCM): Remove ../../cgen/stamp-cgen. --------------B159FE6FDB1EF6071691A00A Content-Type: text/plain; charset=us-ascii; name="sim-common.patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="sim-common.patch.txt" Content-length: 923 Index: sim/common/Make-common.in =================================================================== RCS file: /cvs/src/src/sim/common/Make-common.in,v retrieving revision 1.8 diff -c -p -r1.8 Make-common.in *** sim/common/Make-common.in 14 Jul 2002 17:03:39 -0000 1.8 --- sim/common/Make-common.in 29 Aug 2002 19:00:06 -0000 *************** CGEN = `if [ -f ../../guile/libguile/gui *** 655,661 **** CGENFLAGS = -v CGEN_CPU_DIR = $(CGENDIR)/cpu ! CGEN_READ_SCM = ../../cgen/stamp-cgen $(CGENDIR)/sim.scm CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm --- 655,661 ---- CGENFLAGS = -v CGEN_CPU_DIR = $(CGENDIR)/cpu ! CGEN_READ_SCM = $(CGENDIR)/sim.scm CGEN_ARCH_SCM = $(CGENDIR)/sim-arch.scm CGEN_CPU_SCM = $(CGENDIR)/sim-cpu.scm $(CGENDIR)/sim-model.scm CGEN_DECODE_SCM = $(CGENDIR)/sim-decode.scm --------------B159FE6FDB1EF6071691A00A--