From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27081 invoked by alias); 22 May 2006 09:09:39 -0000 Received: (qmail 24002 invoked by uid 22791); 22 May 2006 09:07:20 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 22 May 2006 09:06:37 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4M96ZvX029765 for ; Mon, 22 May 2006 05:06:35 -0400 Received: from pobox.surrey.redhat.com (pobox.surrey.redhat.com [172.16.10.17]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4M96Yvu012912 for ; Mon, 22 May 2006 05:06:34 -0400 Received: from localhost.localdomain.redhat.com (vpn-68-6.surrey.redhat.com [10.32.68.6]) by pobox.surrey.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4M96XPx027794 for ; Mon, 22 May 2006 10:06:33 +0100 To: binutils@sourceware.org Subject: [PATCH]: Fix include paths in iq2000.cpu From: Nick Clifton Date: Mon, 22 May 2006 15:39:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-05/txt/msg00376.txt.bz2 Hi Guys, I am applying the patch below to fix a small problem with the cpu/iq2000.cpu file. This file includes the iq2000m.cpu and iq10.cpu files, but it had a built-in path to them that does not work under all circumstances. Since the make rules set up the correct include paths anyway, there is no need for a built-in path, so I have removed them. Cheers Nick cpu/ChangeLog 2006-05-22 Nick Clifton * iq2000.cpu: Fix include paths for iq2000m.cpu and iq10.cpu. Index: cpu/iq2000.cpu =================================================================== RCS file: /cvs/src/src/cpu/iq2000.cpu,v retrieving revision 1.4 diff -c -3 -p -r1.4 iq2000.cpu *** cpu/iq2000.cpu 6 Jul 2005 08:18:52 -0000 1.4 --- cpu/iq2000.cpu 22 May 2006 09:05:57 -0000 *************** *** 1173,1182 **** (if (keep-mach? (iq2000)) ! (include "../../cpu/iq2000m.cpu")) (if (keep-mach? (iq10)) ! (include "../../cpu/iq10.cpu")) ! ! ! --- 1173,1179 ---- (if (keep-mach? (iq2000)) ! (include "iq2000m.cpu")) (if (keep-mach? (iq10)) ! (include "iq10.cpu"))