From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25777 invoked by alias); 1 May 2004 15:39:23 -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 25769 invoked from network); 1 May 2004 15:39:22 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 1 May 2004 15:39:22 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i41FdMKI011622 for ; Sat, 1 May 2004 11:39:22 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i41FdLv30984; Sat, 1 May 2004 11:39:21 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 643D22B9D; Sat, 1 May 2004 11:39:19 -0400 (EDT) Message-ID: <4093C4A7.7000702@gnu.org> Date: Sat, 01 May 2004 15:39:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: Andreas Schwab Cc: gdb-patches@sources.redhat.com Subject: Re: [obish] Move m68k GNU/Linux sigtramp code to m68klinux-tdep.c References: <4093BDA9.5080300@gnu.org> In-Reply-To: Content-Type: multipart/mixed; boundary="------------070801040308070207040302" X-SW-Source: 2004-05/txt/msg00028.txt.bz2 This is a multi-part message in MIME format. --------------070801040308070207040302 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 184 > Andrew Cagney writes: > > >>> * Makefile.in (m68klinux-nat.o): Update dependencies. > > > ITYM m68klinux-tdep.o Oops, thanks, committed the attached. Andrew --------------070801040308070207040302 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1226 2004-05-01 Andrew Cagney * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix m68klinux-tdep.o's dependencies, were previously added to m68klinux-nat.o. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.554 diff -p -u -r1.554 Makefile.in --- Makefile.in 1 May 2004 15:10:15 -0000 1.554 +++ Makefile.in 1 May 2004 15:36:55 -0000 @@ -2014,11 +2014,11 @@ m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \ $(language_h) $(gdbcore_h) $(gdb_string_h) $(regcache_h) \ $(m68k_tdep_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \ - $(gregset_h) $(trad_frame_h) $(frame_unwind_h) + $(gregset_h) m68klinux-tdep.o: m68klinux-tdep.c $(defs_h) $(gdbcore_h) $(doublest_h) \ $(floatformat_h) $(frame_h) $(target_h) $(gdb_string_h) \ $(gdbtypes_h) $(osabi_h) $(regcache_h) $(objfiles_h) $(symtab_h) \ - $(m68k_tdep_h) + $(m68k_tdep_h) $(trad_frame_h) $(frame_unwind_h) m68kbsd-nat.o: m68kbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ $(gdb_assert_h) $(m68k_tdep_h) m68kbsd-tdep.o: m68kbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \ --------------070801040308070207040302--