GNU Binutils with patches for OS216
Revision | 2941da8cd754820bd6dd167a58d8fa11df09669d (tree) |
---|---|
Time | 2004-10-16 01:17:34 |
Author | Michael Chastain <mec@goog...> |
Commiter | Michael Chastain |
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.
@@ -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 | + | |
1 | 7 | 2004-10-15 Andrew Cagney <cagney@gnu.org> |
2 | 8 | |
3 | 9 | * ada-exp.y, ada-lex.l: Use xmalloc and xrealloc through out. |
@@ -1575,8 +1575,8 @@ po/$(PACKAGE).pot: force | ||
1575 | 1575 | -e '/extern.*realloc/d' \ |
1576 | 1576 | -e '/extern.*free/d' \ |
1577 | 1577 | -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' \ | |
1580 | 1580 | -e '/^#line.*y.tab.c/d' \ |
1581 | 1581 | < $@.tmp > $@.new |
1582 | 1582 | -rm $@.tmp |
@@ -1589,8 +1589,8 @@ po/$(PACKAGE).pot: force | ||
1589 | 1589 | -e '/extern.*realloc/d' \ |
1590 | 1590 | -e '/extern.*free/d' \ |
1591 | 1591 | -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' \ | |
1594 | 1594 | -e 's/yy_flex_xrealloc/yyxrealloc/g' \ |
1595 | 1595 | < $@ > $@.new && \ |
1596 | 1596 | rm -f $@ && \ |