summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-10 10:32:25 +1000
committerChris Johns <chrisj@rtems.org>2018-04-11 11:52:29 +1000
commit7ff743d54970febeedfb7d3ff1c76675c2f9dc9a (patch)
treea428492b663f195681fb1dae1d80cd015ffd915f /c
parentfstest/fsrfsbitmap01: Update RFS bitmap tests to test fixes. (diff)
downloadrtems-7ff743d54970febeedfb7d3ff1c76675c2f9dc9a.tar.bz2
Generate an error if a BSP in the --enable-rtemsbsp list is not valid
Also generate an error if the architecure does not match the --target architecture given to configure's command line. Close #2641.
Diffstat (limited to 'c')
-rw-r--r--c/src/aclocal/enable-rtemsbsp.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/c/src/aclocal/enable-rtemsbsp.m4 b/c/src/aclocal/enable-rtemsbsp.m4
deleted file mode 100644
index 91c14a9926..0000000000
--- a/c/src/aclocal/enable-rtemsbsp.m4
+++ /dev/null
@@ -1,13 +0,0 @@
-dnl Override the set of BSPs to be built.
-dnl used by the toplevel configure script
-dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
-AC_DEFUN([RTEMS_ENABLE_RTEMSBSP],
-[
-AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
-AC_ARG_ENABLE(rtemsbsp,
-[AS_HELP_STRING(--enable-rtemsbsp="bsp1 bsp2 ..",BSPs to include in build)],
-[case "${enableval}" in
- yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp="bsp1 bsp2"]);;
- *) $1=$enableval;;
-esac],[$1=""])
-])