From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7048 invoked by alias); 29 Jun 2004 17:22:51 -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 7032 invoked from network); 29 Jun 2004 17:22:50 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 29 Jun 2004 17:22:50 -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 i5THMoe1030341 for ; Tue, 29 Jun 2004 13:22:50 -0400 Received: from zenia.home.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 i5THMm031531; Tue, 29 Jun 2004 13:22:49 -0400 To: gdb-patches@sources.redhat.com Subject: PATCH: fix variable name in Makefile.in From: Jim Blandy Date: Tue, 29 Jun 2004 17:22:00 -0000 Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2004-06/txt/msg00672.txt.bz2 --=-=-= Content-length: 24 Committed as obvious. --=-=-= Content-Type: text/patch Content-Disposition: inline Content-length: 1235 2004-06-29 Jim Blandy * Makefile.in (gdb_callback_h): Renamed from callback_h to the name actually used in the dependency lists. Index: gdb/Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.591 diff -c -p -r1.591 Makefile.in *** gdb/Makefile.in 27 Jun 2004 16:22:42 -0000 1.591 --- gdb/Makefile.in 29 Jun 2004 17:18:20 -0000 *************** gdb/Makefile.in $(INCLUDE_DIR)/aout/s *** 561,567 **** getopt_h = $(INCLUDE_DIR)/getopt.h floatformat_h = $(INCLUDE_DIR)/floatformat.h bfd_h = $(BFD_DIR)/bfd.h - callback_h = $(INCLUDE_DIR)/gdb/callback.h coff_sym_h = $(INCLUDE_DIR)/coff/sym.h coff_symconst_h = $(INCLUDE_DIR)/coff/symconst.h coff_ecoff_h = $(INCLUDE_DIR)/coff/ecoff.h --- 561,566 ---- *************** readline_tilde_h = $(READLINE_SRC)/tilde *** 583,588 **** --- 582,588 ---- readline_history_h = $(READLINE_SRC)/history.h frv_desc_h = $(OPCODES_SRC)/frv-desc.h sh_opc_h = $(OPCODES_SRC)/sh-opc.h + gdb_callback_h = $(INCLUDE_DIR)/gdb/callback.h gdb_sim_arm_h = $(INCLUDE_DIR)/gdb/sim-arm.h gdb_sim_d10v_h = $(INCLUDE_DIR)/gdb/sim-d10v.h gdb_sim_frv_h = $(INCLUDE_DIR)/gdb/sim-frv.h --=-=-=--