From e5ce0102dc80199028fc9f7c30c52f22c73f6dc7 Mon Sep 17 00:00:00 2001 From: Zurab Kvachadze Date: Fri, 20 Feb 2026 16:11:13 +0100 Subject: [PATCH] auto/options: Exit with exit code 0 when --help option is passed auto/options calls `exit 1` when `--help` is passed to configure, which doesn't really align with how most utilities handle `--help`. Since `--help` is a totally legal option, this commit makes script exit with the successful exit code, i.e. the exit code 0. Signed-off-by: Zurab Kvachadze --- auto/options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto/options b/auto/options index 6a6e990a0..83d17e15d 100644 --- a/auto/options +++ b/auto/options @@ -608,7 +608,7 @@ cat << END END - exit 1 + exit 0 fi