From 994202a41792070b06809c614ae7ea73f1d79b84 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 16 Jun 2000 13:00:42 +0000 Subject: Patch rtems-rc-20000615-4-cvs.diff from Ralf Corsepius to fix the following: * lib/configure.in actually is libc's configure.in, so let it depend on libc not on lib [In my Cygnus/GNU configuration scheme, lib/include and lib/libc are treated as one unit, while libcpu and libbsp are treated as separate units.] * Allow empty --enable-bare* flags for the bare bsp. The formerly used scheme is too strict for our multilib experiments. --- c/src/lib/libbsp/configure.in | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'c/src/lib/libbsp') diff --git a/c/src/lib/libbsp/configure.in b/c/src/lib/libbsp/configure.in index 70cbabb8d3..75f642004f 100644 --- a/c/src/lib/libbsp/configure.in +++ b/c/src/lib/libbsp/configure.in @@ -28,22 +28,7 @@ RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir) # Is there code where there should be for this BSP? # The bare bsp is a special case as it is not under the RTEMS_CPU path -case $bspdir in - bare) - bspcpudir= - if test "X${BARE_CPU_CFLAGS}" = "X" ; then - AC_MSG_ERROR([--enable-bare-cpu-cflags not specified for bare bsp]) - fi - if test "X${BARE_CPU_MODEL}" = "X" ; then - AC_MSG_ERROR([--enable-bare-cpu-model not specified for bare bsp]) - fi - ;; - *) - bspcpudir=$RTEMS_CPU/ - ;; -esac - -if test "$RTEMS_BSP" = "bare" ; then +if test "$bspdir" = "bare" ; then RTEMS_LIBBSP_CPU_SUBDIR="bare" else RTEMS_LIBBSP_CPU_SUBDIR=$RTEMS_CPU -- cgit v1.2.3