forked from Imagelibrary/rtems
* aclocal/config-subdirs.m4: Let CC default to $host_alias-gcc in TARGET_CONFIG_SUBDIRS. * aclocal/enable-bsp.m4: fix quoting. * aclocal/check-bsps.m4, aclocal/bsp-alias.m4: Add pc386dx.
16 lines
447 B
Plaintext
16 lines
447 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])dnl
|
|
AC_ARG_ENABLE(rtemsbsp,
|
|
[ --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=""])
|
|
])
|