summaryrefslogtreecommitdiffstats
path: root/testsuites/aclocal/check-custom-bsp.m4
blob: c30a9ee9ed037403496ef30dbac9ce9e6c679530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dnl $Id$

AC_DEFUN([_RTEMS_CHECK_CUSTOM_BSP],[
  for i in ${rtems_rootdir}make/custom/$1;
  do
    AC_MSG_CHECKING([for $i])
    AS_IF([test -r $i],[
      $2="$i"
      AC_MSG_RESULT([yes])
      break;
    ],[
      AC_MSG_RESULT([no])
    ])
  done
])

AC_DEFUN([RTEMS_CHECK_CUSTOM_BSP],[
  AC_REQUIRE([RTEMS_TOP])
  _RTEMS_CHECK_CUSTOM_BSP([[$]$1.cfg],[BSP_FOUND])
  AS_IF([test -z "$BSP_FOUND"],[
    AC_MSG_ERROR([missing [$]$1.cfg])
  ])
])