source: rtems/testsuites/aclocal/check-custom-bsp.m4 @ 9e8c23a

Last change on this file since 9e8c23a was a7c4e122, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/25/04 at 11:04:56

2004-03-25 Ralf Corsepius <corsepiu@…>

  • aclocal/check-custom-bsp.m4: Fix minor typo.
  • Property mode set to 100644
File size: 448 bytes
Line 
1dnl $Id$
2
3AC_DEFUN([_RTEMS_CHECK_CUSTOM_BSP],[
4  for i in ${rtems_rootdir}make/custom/$1;
5  do
6    AC_MSG_CHECKING([for $i])
7    AS_IF([test -r $i],[
8      $2="$i"
9      AC_MSG_RESULT([yes])
10      break;
11    ],[
12      AC_MSG_RESULT([no])
13    ])
14  done
15])
16
17AC_DEFUN([RTEMS_CHECK_CUSTOM_BSP],[
18  AC_REQUIRE([RTEMS_TOP])
19  _RTEMS_CHECK_CUSTOM_BSP([[$]$1.cfg],[BSP_FOUND])
20  AS_IF([test -z "$BSP_FOUND"],[
21    AC_MSG_ERROR([missing [$]$1.cfg])
22  ])
23])
Note: See TracBrowser for help on using the repository browser.