summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-08 02:50:06 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-08 02:50:06 +0000
commit0598fb8f6db1a64d6b5f95e5c951c30e390ef28c (patch)
treecad991534f5662fc62a04c26519384b4bd9f420b
parent2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-0598fb8f6db1a64d6b5f95e5c951c30e390ef28c.tar.bz2
2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/rtems-top.m4 (rtems_updir): Quote sed args.
-rw-r--r--c/src/ChangeLog4
-rw-r--r--c/src/aclocal/rtems-top.m42
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/aclocal/rtems-top.m42
4 files changed, 10 insertions, 2 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index f8eca351ee..952433a76c 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,3 +1,7 @@
+2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * aclocal/rtems-top.m4 (rtems_updir): Quote sed args.
+
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
* make/bsp.mak: Remove CFLAGS_DEBUG_V.
diff --git a/c/src/aclocal/rtems-top.m4 b/c/src/aclocal/rtems-top.m4
index dcba9e422c..d7329d7d95 100644
--- a/c/src/aclocal/rtems-top.m4
+++ b/c/src/aclocal/rtems-top.m4
@@ -20,7 +20,7 @@ AC_PREFIX_DEFAULT([/opt/rtems-][RTEMS_API])
AC_SUBST([RTEMS_TOPdir],["$1"])
# HACK: The sed pattern in rtems_updir matches c/src/
-rtems_updir=m4_if([$2],[],[`echo "$1/" | sed s,^\.\.\/\.\.\/,,`],[$2/])
+rtems_updir=m4_if([$2],[],[`echo "$1/" | sed 's,^\.\.\/\.\.\/,,'`],[$2/])
AS_IF([test -n "${with_target_subdir}"],
[project_top="../${with_project_top}"],
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 766b3ae253..5633d23d12 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>
+ * aclocal/rtems-top.m4 (rtems_updir): Quote sed args.
+
+2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>
+
* libnetworking/net/if_ppp.c, libnetworking/net/if_pppvar.h:
Ansification, cosmetics from FreeBSD.
diff --git a/cpukit/aclocal/rtems-top.m4 b/cpukit/aclocal/rtems-top.m4
index 98384caa73..7abeb82ba8 100644
--- a/cpukit/aclocal/rtems-top.m4
+++ b/cpukit/aclocal/rtems-top.m4
@@ -20,7 +20,7 @@ AC_PREFIX_DEFAULT([/opt/rtems-][RTEMS_API])
AC_SUBST([RTEMS_TOPdir],["$1"])
# HACK: The sed pattern below strips of "../", corresponding to "cpukit/"
-rtems_updir="/"m4_if([$2],[],[`echo "$1/" | sed s,^\.\.\/,,`],[$2/])
+rtems_updir="/"m4_if([$2],[],[`echo "$1/" | sed 's,^\.\.\/,,'`],[$2/])
AS_IF([test -n "$with_multisubdir"],
[MULTIBUILDTOP=`echo "/$with_multisubdir" | sed 's,/[[^\\/]]*,../,g'`])