2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>

* aclocal/bsp-alias.m4: Fix quoting bug.
This commit is contained in:
Ralf Corsepius
2009-10-21 09:26:05 +00:00
parent 2e710b0d93
commit 2627c966dc
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/bsp-alias.m4: Fix quoting bug.
2009-10-17 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4: * aclocal/check-custom-bsp.m4:

View File

@@ -6,7 +6,7 @@ dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
dnl Internal subroutine to RTEMS_BSP_ALIAS dnl Internal subroutine to RTEMS_BSP_ALIAS
AC_DEFUN([_RTEMS_BSP_ALIAS], AC_DEFUN([_RTEMS_BSP_ALIAS],
[# account for "aliased" bsps which share source code [# account for "aliased" bsps which share source code
for bsp_cfgs in `ls "$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU/*/make/custom/$1.cfg" 2>/dev/null`; do for bsp_cfgs in `ls "$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU/"*"/make/custom/$1.cfg" 2>/dev/null`; do
$2=`echo "$bsp_cfgs" | sed \ $2=`echo "$bsp_cfgs" | sed \
-e "s,^$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU/,," \ -e "s,^$srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU/,," \
-e "s,/make/custom/.*\.cfg$,,"` -e "s,/make/custom/.*\.cfg$,,"`