summaryrefslogtreecommitdiffstats
path: root/aclocal/check-cpu.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-10-02 01:47:27 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-10-02 01:47:27 +0000
commit4f2064f13e58e5cf18a05603b3d63228cb8be225 (patch)
treeb868faeef4fa38a816d9144999a54c4a87b4e168 /aclocal/check-cpu.m4
parent2003-10-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4f2064f13e58e5cf18a05603b3d63228cb8be225.tar.bz2
2003-10-01 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-cpu.m4: Remove. * Makefile.am: Remove reference to aclocal/check-cpu.m4. * acinclude.m4 (RTEMS_TARGET_CONFIG_SUBDIR): Check for presence of $1 in $srcdir before adding dir to SUBDIRS.
Diffstat (limited to 'aclocal/check-cpu.m4')
-rw-r--r--aclocal/check-cpu.m418
1 files changed, 0 insertions, 18 deletions
diff --git a/aclocal/check-cpu.m4 b/aclocal/check-cpu.m4
deleted file mode 100644
index f3bc2141ae..0000000000
--- a/aclocal/check-cpu.m4
+++ /dev/null
@@ -1,18 +0,0 @@
-dnl $Id$
-
-dnl check if RTEMS support a cpu
-AC_DEFUN(RTEMS_CHECK_CPU,
-[dnl
-AC_REQUIRE([RTEMS_TOP])
-AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])
-
-# Is this a supported CPU?
-AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])
-# FIXME: Temporary hack
-if test -d "$srcdir/$RTEMS_TOPdir/cpukit/score/cpu/$RTEMS_CPU"; then
- AC_MSG_RESULT(yes)
-else
- AC_MSG_ERROR(no)
-fi
-])dnl
-