mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
* 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.
13 lines
340 B
Plaintext
13 lines
340 B
Plaintext
## $Id$
|
|
|
|
AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG],
|
|
[
|
|
AC_ARG_ENABLE(rtems-debug,
|
|
AC_HELP_STRING([--enable-rtems-debug],[enable RTEMS_DEBUG]),
|
|
[case "${enable_rtems_debug}" in
|
|
yes) enable_rtems_debug=yes ;;
|
|
no) enable_rtems_debug=no ;;
|
|
*) AC_MSG_ERROR([bad value ${enable_rtems_debug} for RTEMS_DEBUG]) ;;
|
|
esac],[enable_rtems_debug=no])
|
|
])
|