Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2021-12-07 17:48:51 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2021-12-13 20:47:54 +0300
commit90950758eb9f65227ef4ce8597ccc922959e25f6 (patch)
tree9d9000794ee6b6e90d047b4b7282947e5ccf53e8
parent8d8724ee1b5aa6a1b080c76a0dec3678136d4981 (diff)
Cygwin: Use AS_HELP_STRING for --enable-debugging
Use AS_HELP_STRING in AC_ARG_WITH for --enable-debugging to ensure correct formatting in 'configure --help' output.
-rw-r--r--winsup/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/configure.ac b/winsup/configure.ac
index 79e78a5fc..cf1128b37 100644
--- a/winsup/configure.ac
+++ b/winsup/configure.ac
@@ -58,7 +58,7 @@ AC_CHECK_TOOL(STRIP, strip, strip)
AC_CHECK_TOOL(WINDRES, windres, windres)
AC_ARG_ENABLE(debugging,
-[ --enable-debugging Build a cygwin DLL which has more consistency checking for debugging],
+[AS_HELP_STRING([--enable-debugging],[Build a cygwin DLL which has more consistency checking for debugging])],
[case "${enableval}" in
yes) AC_DEFINE([DEBUGGING],[1],[Define if DEBUGGING support is requested.]) ;;
no) ;;