summaryrefslogtreecommitdiffstats
path: root/aclocal/check-custom-bsp.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-11-29 08:27:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-11-29 08:27:53 +0000
commitff65620a6972aa0f9114745932abd19b5d8ef2b5 (patch)
tree9a1cc94fab2ce7d0a63f391afb5228c4800c6a26 /aclocal/check-custom-bsp.m4
parent2002-11-28 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-ff65620a6972aa0f9114745932abd19b5d8ef2b5.tar.bz2
2002-11-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/prog-ccas.m4: New. * aclocal/check-custom-bsp.m4: New, split out from check-bsps.m4. * aclocal/check-bsps.m4: Split out RTEMS_CHECK_CUSTOM_BSP. * aclocal/canonicalize-tools.m4: Remove RTEMS_GCC_PRINT.
Diffstat (limited to 'aclocal/check-custom-bsp.m4')
-rw-r--r--aclocal/check-custom-bsp.m410
1 files changed, 10 insertions, 0 deletions
diff --git a/aclocal/check-custom-bsp.m4 b/aclocal/check-custom-bsp.m4
new file mode 100644
index 0000000000..de9d61b79e
--- /dev/null
+++ b/aclocal/check-custom-bsp.m4
@@ -0,0 +1,10 @@
+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])])
+])