2005-02-08 Ralf Corsepius <ralf.corsepius@rtems.org>

* aclocal/rtems-top.m4 (rtems_updir): Quote sed args.
This commit is contained in:
Ralf Corsepius
2005-02-08 02:50:06 +00:00
parent 41ff6708e7
commit 0598fb8f6d
4 changed files with 10 additions and 2 deletions

View File

@@ -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.

View File

@@ -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}"],

View File

@@ -1,3 +1,7 @@
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:

View File

@@ -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'`])