summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul N. Hilfinger <hilfinger@adacore.com>2004-09-24 09:50:28 +0000
committerPaul N. Hilfinger <hilfinger@adacore.com>2004-09-24 09:50:28 +0000
commit89c986aa9755fa7d3eee3beb80ef6b2ce694a1e4 (patch)
treebb4891fc216eb9ed47ed94a19a3dc708504499ec
parent756b0c73ca12f78127658ba739a662a89da178c8 (diff)
downloadgdb-89c986aa9755fa7d3eee3beb80ef6b2ce694a1e4.tar.gz
* Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
the new argument order.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 3333134e15f..948fb47f016 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
+
+ * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
+ the new argument order.
+
2004-09-23 Corinna Vinschen <vinschen@redhat.com>
* MAINTAINERS: Remove "broken" from XStormy16 entry.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index f148868c91e..c12fe1e22c2 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' \