From 6574db601a37ffe5c422907b8400b615300f4290 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Tue, 14 Jan 2025 21:09:56 -0300 Subject: [PATCH] build: fix formatting --disable-sandbox-check Make it match the other `AC_ARG_ENABLE` code. This amends commit a53de4926 ("build: improve --disable-sandbox-check help string", 2025-01-13). Relates to #6592. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index bd68dc9777..38428d5bc6 100644 --- a/configure.ac +++ b/configure.ac @@ -72,9 +72,9 @@ AS_IF([test "x$enable_sanitizer" != "xno" ], [ HAVE_SANDBOX_CHECK="" AC_SUBST([HAVE_SANDBOX_CHECK]) AC_ARG_ENABLE([sandbox-check], - [AS_HELP_STRING([--disable-sandbox-check], - [disable checking if firejail is running within a sandbox, only use - this when developing firejail inside of a sandbox])]) + [AS_HELP_STRING([--disable-sandbox-check], + [disable checking if firejail is running within a sandbox, only use + this when developing firejail inside of a sandbox])]) AS_IF([test "x$enable_sandbox_check" != "xno"], [ HAVE_SANDBOX_CHECK="-DHAVE_SANDBOX_CHECK" ])