This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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



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' \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]