From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2511 invoked by alias); 15 Feb 2012 22:56:13 -0000 Received: (qmail 2497 invoked by uid 22791); 15 Feb 2012 22:56:12 -0000 X-SWARE-Spam-Status: No, hits=-6.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,TW_CN,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 15 Feb 2012 22:55:49 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q1FMtmCM029945 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 15 Feb 2012 17:55:48 -0500 Received: from mesquite.lan (ovpn-113-100.phx2.redhat.com [10.3.113.100]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q1FMtmqj009718 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 15 Feb 2012 17:55:48 -0500 Date: Wed, 15 Feb 2012 23:59:00 -0000 From: Kevin Buettner To: gdb-patches@sourceware.org Subject: [RFC] Add rx to MAINTAINERS and Makefile.in Message-ID: <20120215155546.09bef348@mesquite.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2012-02/txt/msg00314.txt.bz2 While making similar changes for rl78, I noticed that rx didn't appear in either MAINTAINERS or Makefile.in. This patch corrects that oversight. Comments? * MAINTAINERS: Add rx to target ISA section. * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o. (ALLDEPFILES): Add rx-tdep.c. Index: MAINTAINERS =================================================================== RCS file: /cvs/src/src/gdb/MAINTAINERS,v retrieving revision 1.476 diff -u -p -r1.476 MAINTAINERS --- MAINTAINERS 15 Feb 2012 22:17:01 -0000 1.476 +++ MAINTAINERS 15 Feb 2012 22:49:40 -0000 @@ -311,6 +311,8 @@ the native maintainer when resolving ABI rl78 --target=rl78-elf ,-Werror + rx --target=rx-elf ,-Werror + s390 --target=s390-linux-gnu ,-Werror score --target=score-elf Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.1189 diff -u -p -r1.1189 Makefile.in --- Makefile.in 15 Feb 2012 22:17:01 -0000 1.1189 +++ Makefile.in 15 Feb 2012 22:49:40 -0000 @@ -557,6 +557,7 @@ ALL_TARGET_OBS = \ ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \ rl78-tdep.o \ rs6000-aix-tdep.o rs6000-tdep.o \ + rx-tdep.o \ s390-tdep.o \ score-tdep.o \ sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \ @@ -1492,6 +1493,7 @@ ALLDEPFILES = \ dcache.c \ rl78-tdep.c \ rs6000-nat.c rs6000-tdep.c \ + rx-tdep.c \ s390-tdep.c s390-nat.c \ score-tdep.c \ ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \