From: Paul N. Hilfinger Date: Fri, 24 Sep 2004 09:50:28 +0000 (+0000) Subject: * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=89c986aa9755fa7d3eee3beb80ef6b2ce694a1e4;p=pf3gnuchains%2Fpf3gnuchains3x.git * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use the new argument order. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3333134e15..948fb47f01 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-09-24 Paul Hilfinger + + * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use + the new argument order. + 2004-09-23 Corinna Vinschen * MAINTAINERS: Remove "broken" from XStormy16 entry. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index f148868c91..c12fe1e22c 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1564,7 +1564,7 @@ po/$(PACKAGE).pot: force .SUFFIXES: .y .l .y.c: - $(SHELL) $(YLWRAP) "$(YACC)" $< y.tab.c $@.tmp -- $(YFLAGS) + $(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- "$(YACC)" $(YFLAGS) -sed -e '/extern.*malloc/d' \ -e '/extern.*realloc/d' \ -e '/extern.*free/d' \