From adc4a48d26e33f506dcc5e3492b2249cee76724f Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Tue, 22 Aug 2023 03:52:06 +0200 Subject: [PATCH] Fix configure phpdbg help output (#12013) By default phpdbg is enabled (--enable-phpdbg) and user can get info in the `./configure --help` output if they want to disable it like with the other configuration options. --- sapi/phpdbg/config.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapi/phpdbg/config.m4 b/sapi/phpdbg/config.m4 index ac95cf3c57f..10dd2029b4c 100644 --- a/sapi/phpdbg/config.m4 +++ b/sapi/phpdbg/config.m4 @@ -1,7 +1,7 @@ PHP_ARG_ENABLE([phpdbg], [for phpdbg support], - [AS_HELP_STRING([--enable-phpdbg], - [Build phpdbg])], + [AS_HELP_STRING([--disable-phpdbg], + [Disable building of phpdbg])], [yes], [yes])