summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 10:13:20 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 10:13:20 +0000
commit0e08a3c3554c0bc4c5e4d647c1a129bc5b538ac2 (patch)
tree9c6ad6afd37d7b8bdc2e974f1807d95998dbb347
parent2002-07-22 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0e08a3c3554c0bc4c5e4d647c1a129bc5b538ac2.tar.bz2
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of exec/score/cpu.
Diffstat (limited to '')
-rw-r--r--ChangeLog5
-rw-r--r--aclocal/check-cpu.m43
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e3093c324..5c6a136f01 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+ * aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of
+ exec/score/cpu.
+
+2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
* aclocal/bsp-configure.m4: Add RTEMS_CHECK_MULTIPROCESSING.
* automake/compile.am: Add test -d $(ARCH) || mkdir $(ARCH) to all
compilation rules (Work-around to an automake bug).
diff --git a/aclocal/check-cpu.m4 b/aclocal/check-cpu.m4
index b0b01117d1..f3bc2141ae 100644
--- a/aclocal/check-cpu.m4
+++ b/aclocal/check-cpu.m4
@@ -8,7 +8,8 @@ AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])
# Is this a supported CPU?
AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])
-if test -d "$srcdir/$RTEMS_TOPdir/c/src/exec/score/cpu/$RTEMS_CPU"; then
+# FIXME: Temporary hack
+if test -d "$srcdir/$RTEMS_TOPdir/cpukit/score/cpu/$RTEMS_CPU"; then
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR(no)