summaryrefslogblamecommitdiffstats
path: root/testsuites/aclocal/check-tool.m4
blob: 4c412c074a9542a79b49f07d9a9f7c5733829bdc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

        


                                                                                
                            




                                                                           
dnl $Id$

## Check for a cross tool, similar to AC_CHECK_TOOL, but do not fall back to
## the un-prefixed version of PROG-TO-CHECK-FOR.
dnl RTEMS_CHECK_TOOL(VARIABLE, PROG-TO-CHECK-FOR[, VALUE-IF-NOT-FOUND [, PATH]])
AC_DEFUN([RTEMS_CHECK_TOOL],
[
  AS_IF([test "x$build_alias" != "x$host_alias"],
    [rtems_tool_prefix=${ac_tool_prefix}])
  AC_CHECK_PROG($1, ${rtems_tool_prefix}$2, ${rtems_tool_prefix}$2, $3, $4)
])