From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 5203E3857C53; Wed, 19 Jan 2022 13:01:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5203E3857C53 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jon TURNEY To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: Fix configure help for --{en, dis}able-doc option X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/master X-Git-Oldrev: a74707e7acf07652b0457b3f3dedc649c053e236 X-Git-Newrev: 4a7461a07b5af77dcbf9bae6e2a27141eb189f79 Message-Id: <20220119130123.5203E3857C53@sourceware.org> Date: Wed, 19 Jan 2022 13:01:23 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jan 2022 13:01:23 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D4a7461a07b5= af77dcbf9bae6e2a27141eb189f79 commit 4a7461a07b5af77dcbf9bae6e2a27141eb189f79 Author: Jon Turney Date: Tue Jan 18 16:26:36 2022 +0000 Cygwin: Fix configure help for --{en,dis}able-doc option =20 Report '--disable-doc' in 'configure --help', as enable is the default. Diff: --- winsup/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/configure.ac b/winsup/configure.ac index 4ae20509a..b8d2100db 100644 --- a/winsup/configure.ac +++ b/winsup/configure.ac @@ -89,7 +89,7 @@ AC_SUBST(TLSOFFSETS_H) AM_CONDITIONAL(TARGET_X86_64, [test $target_cpu =3D "x86_64"]) =20 AC_ARG_ENABLE(doc, - [AS_HELP_STRING([--enable-doc], [Build documentation])],, + [AS_HELP_STRING([--disable-doc], [do not build documentation])],, enable_doc=3Dyes) AM_CONDITIONAL(BUILD_DOC, [test $enable_doc !=3D "no"])