1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-20 20:05:18 +02:00

Allow --enable-debug=no

Signed-off-by: David Lee <live4thee@gmail.com>
This commit is contained in:
Arun Sharma 2012-06-11 21:44:02 -07:00
parent 0f9a540c8c
commit 21266608cc

View file

@ -178,7 +178,7 @@ AC_MSG_RESULT([$remote_only])
AC_MSG_CHECKING([whether to enable debug support])
AC_ARG_ENABLE(debug,
[ --enable-debug turn on debug support (slows down execution)],
[enable_debug=yes], [enable_debug=no])
[enable_debug=$enableval], [enable_debug=no])
if test x$enable_debug = xyes; then
CPPFLAGS="${CPPFLAGS} -DDEBUG"
else