• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revision2941da8cd754820bd6dd167a58d8fa11df09669d (tree)
Time2004-10-16 01:17:34
AuthorMichael Chastain <mec@goog...>
CommiterMichael Chastain

Log Message

2004-10-15 Michael Chastain <mec.gnu@mindspring.com>

From Andreas Schwab <schwab@suse.de>:
* Makefile.in (.y.c, .l.c.): Fix the substitutions for
for xmalloc and xrealloc.

Change Summary

Incremental Difference

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
1+2004-10-15 Michael Chastain <mec.gnu@mindspring.com>
2+
3+ From Andreas Schwab <schwab@suse.de>:
4+ * Makefile.in (.y.c, .l.c.): Fix the substitutions for
5+ for xmalloc and xrealloc.
6+
17 2004-10-15 Andrew Cagney <cagney@gnu.org>
28
39 * ada-exp.y, ada-lex.l: Use xmalloc and xrealloc through out.
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1575,8 +1575,8 @@ po/$(PACKAGE).pot: force
15751575 -e '/extern.*realloc/d' \
15761576 -e '/extern.*free/d' \
15771577 -e '/include.*malloc.h/d' \
1578- -e 's/[^x]malloc/xmalloc/g' \
1579- -e 's/[^x]realloc/xrealloc/g' \
1578+ -e 's/\([^x]\)malloc/\1xmalloc/g' \
1579+ -e 's/\([^x]\)realloc/\1xrealloc/g' \
15801580 -e '/^#line.*y.tab.c/d' \
15811581 < $@.tmp > $@.new
15821582 -rm $@.tmp
@@ -1589,8 +1589,8 @@ po/$(PACKAGE).pot: force
15891589 -e '/extern.*realloc/d' \
15901590 -e '/extern.*free/d' \
15911591 -e '/include.*malloc.h/d' \
1592- -e 's/[^x]malloc/xmalloc/g' \
1593- -e 's/[^x]realloc/xrealloc/g' \
1592+ -e 's/\([^x]\)malloc/\1xmalloc/g' \
1593+ -e 's/\([^x]\)realloc/\1xrealloc/g' \
15941594 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
15951595 < $@ > $@.new && \
15961596 rm -f $@ && \