forked from Imagelibrary/rtems
* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/path-ksh.m4, aclocal/project-root.m4, aclocal/rtems-top.m4, aclocal/tool-paths.m4, acinclude.m4: Fix underquoting to silence automake-1.8.
17 lines
457 B
Plaintext
17 lines
457 B
Plaintext
dnl $Id$
|
|
|
|
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,
|
|
[AC_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=""])
|
|
])
|