[obish] Update usage of ylwrap in gdb/Makefile.in

Paul Hilfinger hilfingr@gnat.com
Fri Sep 24 09:58:00 GMT 2004



A recent update to ylwrap (2004-09-23 Kelley Cook) changed the order of
its arguments, causing the .y.c rule in gdb/Makefile.in to fail.  This
is the obvious correction, now committed.

P. Hilfinger

ChangeLog

2004-09-24  Paul Hilfinger  <hilfingr@nile.gnat.com>

	* Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
	the new argument order.


Index: gdb/Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.625
diff -u -p -r1.625 Makefile.in
--- gdb/Makefile.in	20 Sep 2004 22:26:18 -0000	1.625
+++ gdb/Makefile.in	24 Sep 2004 09:49:07 -0000
@@ -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' \



More information about the Gdb-patches mailing list