<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-03-28)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-03-29 Ralf Corsépius <ralf.corsepius@rtems.org>

        * Makefile.am: Use '|' as sed-delimiter.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/make/ChangeLog.diff?r1=text&tr1=1.80&r2=text&tr2=1.81&diff_format=h">M</a></td><td width='1%'>1.81</td><td width='100%'>c/src/make/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/make/Makefile.am.diff?r1=text&tr1=1.23&r2=text&tr2=1.24&diff_format=h">M</a></td><td width='1%'>1.24</td><td width='100%'>c/src/make/Makefile.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/make/ChangeLog:1.80 rtems/c/src/make/ChangeLog:1.81
--- rtems/c/src/make/ChangeLog:1.80     Tue Mar  8 18:10:03 2011
+++ rtems/c/src/make/ChangeLog  Mon Mar 28 22:43:00 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-03-29    Ralf Corsépius <ralf.corsepius@rtems.org>
+
+       * Makefile.am: Use '|' as sed-delimiter.
+
</font> 2011-03-08        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        PR 1760/misc

<font color='#006600'>diff -u rtems/c/src/make/Makefile.am:1.23 rtems/c/src/make/Makefile.am:1.24
--- rtems/c/src/make/Makefile.am:1.23   Sun Mar  6 22:05:18 2011
+++ rtems/c/src/make/Makefile.am        Mon Mar 28 22:43:00 2011
</font><font color='#997700'>@@ -31,62 +31,62 @@
</font> 
 bsp.cfg: bsp.cfg.in Makefile
        sed \
<font color='#880000'>-   -e "s,[@]HAS_MP[@],$(HAS_MP)," \
-       -e "s,[@]HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-       -e "s,[@]HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
-       -e "s,[@]HAS_NETWORKING[@],$(HAS_NETWORKING),"  \
</font><font color='#000088'>+      -e "s|[@]HAS_MP[@]|$(HAS_MP)|" \
+       -e "s|[@]HAS_POSIX_API[@]|$(HAS_POSIX_API)|" \
+       -e "s|[@]HAS_CPLUSPLUS[@]|$(HAS_CPLUSPLUS)|" \
+       -e "s|[@]HAS_NETWORKING[@]|$(HAS_NETWORKING)|" \
</font>   < $(srcdir)/bsp.cfg.in > bsp.cfg
 CLEANFILES += bsp.cfg
 
 target.cfg: target.cfg.in Makefile
        sed \
<font color='#880000'>-   -e "s,[@]CPPFLAGS[@],$(CPPFLAGS),"  \
-       -e "s,[@]CFLAGS[@],$(CFLAGS),"  \
-       -e "s,[@]LIBS[@],$(LIBS),"  \
-       -e "s,[@]CC[@],$(CC),"  \
-       -e "s,[@]CXX[@],$(CXX),"  \
-       -e "s,[@]AS[@],$(AS),"  \
-       -e "s,[@]AR[@],$(AR),"  \
-       -e "s,[@]NM[@],$(NM),"  \
-       -e "s,[@]LD[@],$(LD),"  \
-       -e "s,[@]SIZE[@],$(SIZE),"  \
-       -e "s,[@]STRIP[@],$(STRIP)," \
-       -e "s,[@]RANLIB[@],$(RANLIB),"  \
-       -e "s,[@]OBJCOPY[@],$(OBJCOPY),"  \
-       -e "s,[@]RTEMS_CPU[@],$(RTEMS_CPU),"  \
-       -e "s,[@]RTEMS_HAS_MULTIPROCESSING[@],$(HAS_MP)," \
-       -e "s,[@]RTEMS_HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-       -e "s,[@]RTEMS_HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
-       -e "s,[@]RTEMS_HAS_NETWORKING[@],$(HAS_NETWORKING),"  \
</font><font color='#000088'>+      -e "s|[@]CPPFLAGS[@]|$(CPPFLAGS)|" \
+       -e "s|[@]CFLAGS[@]|$(CFLAGS)|" \
+       -e "s|[@]LIBS[@]|$(LIBS)|" \
+       -e "s|[@]CC[@]|$(CC)|" \
+       -e "s|[@]CXX[@]|$(CXX)|" \
+       -e "s|[@]AS[@]|$(AS)|" \
+       -e "s|[@]AR[@]|$(AR)|" \
+       -e "s|[@]NM[@]|$(NM)|" \
+       -e "s|[@]LD[@]|$(LD)|" \
+       -e "s|[@]SIZE[@]|$(SIZE)|" \
+       -e "s|[@]STRIP[@]|$(STRIP)|" \
+       -e "s|[@]RANLIB[@]|$(RANLIB)|" \
+       -e "s|[@]OBJCOPY[@]|$(OBJCOPY)|" \
+       -e "s|[@]RTEMS_CPU[@]|$(RTEMS_CPU)|" \
+       -e "s|[@]RTEMS_HAS_MULTIPROCESSING[@]|$(HAS_MP)|" \
+       -e "s|[@]RTEMS_HAS_POSIX_API[@]|$(HAS_POSIX_API)|" \
+       -e "s|[@]RTEMS_HAS_CPLUSPLUS[@]|$(HAS_CPLUSPLUS)|" \
+       -e "s|[@]RTEMS_HAS_NETWORKING[@]|$(HAS_NETWORKING)|" \
</font>   < $(srcdir)/target.cfg.in > target.cfg
 CLEANFILES += target.cfg
 
 host.cfg: host.cfg.in Makefile
        sed \
<font color='#880000'>-   -e "s,[@]CP[@],$(CP)," \
-       -e "s,[@]MV[@],$(MV)," \
-       -e "s,[@]LN[@],$(LN),"  \
-       -e "s,[@]SHELL[@],$(SHELL),"  \
-       -e "s,[@]KSH[@],$(KSH),"  \
</font><font color='#000088'>+      -e "s|[@]CP[@]|$(CP)|" \
+       -e "s|[@]MV[@]|$(MV)|" \
+       -e "s|[@]LN[@]|$(LN)|" \
+       -e "s|[@]SHELL[@]|$(SHELL)|" \
+       -e "s|[@]KSH[@]|$(KSH)|" \
</font>   < $(srcdir)/host.cfg.in > host.cfg
 CLEANFILES += host.cfg
 
 Makefile.inc: Makefile.inc.in Makefile
        sed \
<font color='#880000'>-   -e "s,[@]prefix[@],$(prefix)," \
-       -e "s,[@]exec_prefix[@],$(exec_prefix)," \
-       -e "s,[@]pkgdatadir[@],$(pkgdatadir),"  \
-       -e "s,[@]RTEMS_BSP[@],$(RTEMS_BSP),"  \
-       -e "s,[@]CC[@],$(CC),"  \
-       -e "s,[@]CXX[@],$(CXX),"  \
-       -e "s,[@]AS[@],$(AS),"  \
-       -e "s,[@]AR[@],$(AR),"  \
-       -e "s,[@]NM[@],$(NM),"  \
-       -e "s,[@]LD[@],$(LD),"  \
-       -e "s,[@]SIZE[@],$(SIZE),"  \
-       -e "s,[@]OBJCOPY[@],$(OBJCOPY),"  \
-       -e "s,[@]RTEMS_HAS_POSIX_API[@],$(HAS_POSIX_API)," \
-       -e "s,[@]RTEMS_HAS_CPLUSPLUS[@],$(HAS_CPLUSPLUS)," \
</font><font color='#000088'>+      -e "s|[@]prefix[@]|$(prefix)|" \
+       -e "s|[@]exec_prefix[@]|$(exec_prefix)|" \
+       -e "s|[@]pkgdatadir[@]|$(pkgdatadir)|" \
+       -e "s|[@]RTEMS_BSP[@]|$(RTEMS_BSP)|" \
+       -e "s|[@]CC[@]|$(CC)|" \
+       -e "s|[@]CXX[@]|$(CXX)|" \
+       -e "s|[@]AS[@]|$(AS)|" \
+       -e "s|[@]AR[@]|$(AR)|" \
+       -e "s|[@]NM[@]|$(NM)|" \
+       -e "s|[@]LD[@]|$(LD)|" \
+       -e "s|[@]SIZE[@]|$(SIZE)|" \
+       -e "s|[@]OBJCOPY[@]|$(OBJCOPY)|" \
+       -e "s|[@]RTEMS_HAS_POSIX_API[@]|$(HAS_POSIX_API)|" \
+       -e "s|[@]RTEMS_HAS_CPLUSPLUS[@]|$(HAS_CPLUSPLUS)|" \
</font>   < $(srcdir)/Makefile.inc.in > Makefile.inc
 CLEANFILES += Makefile.inc
 
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>