From e03faba4a258e4efa38139a229a6ca80a43fc742 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Mon, 21 Aug 2023 17:48:56 +0200 Subject: [PATCH] Fix configure phpdbg help output 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 ac95cf3c57f91..10dd2029b4c32 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])