summaryrefslogtreecommitdiffstats
path: root/c/src/exec/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-05 16:13:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-05 16:13:07 +0000
commit1b16e63c4fd963c51bcfc536d0855eae9163f3a1 (patch)
treee298922ac3ca47810a7e820481bf2574efb0fd09 /c/src/exec/aclocal
parent2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-1b16e63c4fd963c51bcfc536d0855eae9163f3a1.tar.bz2
2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* automake/multilib.am: Add install-multi. * aclocal/rtems-top.m4: Reflect new RTEMS_TOPdir to detecting version.m4. Add --with-project-root. Reflect --with-project-root to setting up PROJECT_ROOT. * aclocal/env-rtemscpu.m4: Reflect new RTEMS_TOPdir (HACK). * aclocal/check-cpu.m4: Reflect new RTEMS_TOPdir. * aclocal/check-bsps.m4: Reflect new RTEMS_TOPdir.
Diffstat (limited to 'c/src/exec/aclocal')
-rw-r--r--c/src/exec/aclocal/check-bsps.m42
-rw-r--r--c/src/exec/aclocal/check-cpu.m42
-rw-r--r--c/src/exec/aclocal/env-rtemscpu.m42
-rw-r--r--c/src/exec/aclocal/rtems-top.m414
4 files changed, 8 insertions, 12 deletions
diff --git a/c/src/exec/aclocal/check-bsps.m4 b/c/src/exec/aclocal/check-bsps.m4
index 7c450e783f..b5f66bb4c1 100644
--- a/c/src/exec/aclocal/check-bsps.m4
+++ b/c/src/exec/aclocal/check-bsps.m4
@@ -5,7 +5,7 @@ AC_DEFUN(RTEMS_CHECK_CUSTOM_BSP,
AC_REQUIRE([RTEMS_TOP])
AC_MSG_CHECKING([for make/custom/[$]$1.cfg])
-if test -r "$srcdir/$RTEMS_TOPdir/make/custom/[$]$1.cfg"; then
+if test -r "$srcdir/$RTEMS_TOPdir/../../make/custom/[$]$1.cfg"; then
AC_MSG_RESULT([yes])
else
AC_MSG_ERROR([no])
diff --git a/c/src/exec/aclocal/check-cpu.m4 b/c/src/exec/aclocal/check-cpu.m4
index b0b01117d1..ad16ae4e66 100644
--- a/c/src/exec/aclocal/check-cpu.m4
+++ b/c/src/exec/aclocal/check-cpu.m4
@@ -8,7 +8,7 @@ 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
+if test -d "$srcdir/$RTEMS_TOPdir/exec/score/cpu/$RTEMS_CPU"; then
AC_MSG_RESULT(yes)
else
AC_MSG_ERROR(no)
diff --git a/c/src/exec/aclocal/env-rtemscpu.m4 b/c/src/exec/aclocal/env-rtemscpu.m4
index e01efb12c0..42fd06b23f 100644
--- a/c/src/exec/aclocal/env-rtemscpu.m4
+++ b/c/src/exec/aclocal/env-rtemscpu.m4
@@ -18,7 +18,7 @@ if test x"$multilib" = x"yes"; then
fi
AC_SUBST(MULTISUBDIR)
- PROJECT_ROOT="${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)"
+ PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)"
GCC_SPECS="-isystem \$(PROJECT_ROOT)/lib/include"
AC_SUBST(GCC_SPECS)
diff --git a/c/src/exec/aclocal/rtems-top.m4 b/c/src/exec/aclocal/rtems-top.m4
index 82da20edd5..c49a6f4a95 100644
--- a/c/src/exec/aclocal/rtems-top.m4
+++ b/c/src/exec/aclocal/rtems-top.m4
@@ -35,18 +35,14 @@ PROJECT_TOPdir=${dots}${RTEMS_TOPdir}/'$(top_builddir)'
fi
AC_SUBST(PROJECT_TOPdir)
-if test "$with_target_subdir" = "." ; then
-# Native
-PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)"
-else
-# Cross
-PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)"
-fi
+AS_IF([test "${with_project_root+set}" = set],
+ [PROJECT_ROOT="${with_project_root}${RTEMS_TOPdir}/\$(top_builddir)"],
+ [PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(top_builddir)"])
AC_SUBST(PROJECT_ROOT)
AC_MSG_CHECKING([for RTEMS Version])
-AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/aclocal/version.m4"],
+AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/exec/aclocal/version.m4"],
[],
-[AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/aclocal/version.m4])])
+[AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/exec/aclocal/version.m4])])
AC_MSG_RESULT([_RTEMS_VERSION])
])dnl