forked from Imagelibrary/rtems
* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/path-ksh.m4, aclocal/project-root.m4, aclocal/rtems-top.m4, aclocal/tool-paths.m4, acinclude.m4: Fix underquoting to silence automake-1.8.
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
dnl $Id$
|
|
|
|
AC_DEFUN([RTEMS_CHECK_CUSTOM_BSP],
|
|
[
|
|
AC_REQUIRE([RTEMS_TOP])
|
|
|
|
AC_MSG_CHECKING([for make/custom/[$]$1.cfg])
|
|
AS_IF([test -r "$srcdir/$RTEMS_TOPdir/make/custom/[$]$1.cfg"],
|
|
[AC_MSG_RESULT([yes])],
|
|
[AC_MSG_ERROR([no])])
|
|
])
|