mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
11 lines
331 B
Plaintext
11 lines
331 B
Plaintext
AC_DEFUN([RTEMS_ENABLE_RTEMS_DEBUG],
|
|
[
|
|
AC_ARG_ENABLE(rtems-debug,
|
|
AS_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])
|
|
])
|