From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3474 invoked by alias); 2 Dec 2002 19:13:34 -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 3467 invoked from network); 2 Dec 2002 19:13:34 -0000 Received: from unknown (HELO jackfruit.Stanford.EDU) (171.64.38.136) by sources.redhat.com with SMTP; 2 Dec 2002 19:13:34 -0000 Received: (from carlton@localhost) by jackfruit.Stanford.EDU (8.11.6/8.11.6) id gB2JDXi08412; Mon, 2 Dec 2002 11:13:33 -0800 X-Authentication-Warning: jackfruit.Stanford.EDU: carlton set sender to carlton@math.stanford.edu using -f To: gdb-patches@sources.redhat.com Subject: [rfa] remove dependency of f-exp.tab.c on c-exp.tab.c From: David Carlton Date: Mon, 02 Dec 2002 11:13:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-12/txt/msg00029.txt.bz2 Is there any particular reason why f-exp.tab.c depends on c-exp.tab.c? I'm assuming that it's a bug (I didn't see any reason for it in f-exp.y), but I wanted to double-check before removing the dependency. David Carlton carlton@math.stanford.edu 2002-12-02 David Carlton * Makefile.in (f-exp.tab.c): Don't depend on c-exp.tab.c. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.279 diff -u -p -r1.279 Makefile.in --- Makefile.in 9 Nov 2002 03:14:11 -0000 1.279 +++ Makefile.in 2 Dec 2002 19:10:02 -0000 @@ -1248,7 +1248,7 @@ jv-exp.tab.c: jv-exp.y # See comments above ... .PRECIOUS: f-exp.tab.c f-exp.tab.o: f-exp.tab.c -f-exp.tab.c: f-exp.y c-exp.tab.c +f-exp.tab.c: f-exp.y $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS) -sed -e '/extern.*malloc/d' \ -e '/extern.*realloc/d' \