build: improve --disable-sandbox-check help string

This amends commit 108327c5a ("feature: build: add
--disable-sandbox-check configure flag", 2024-12-27) / PR #6592.
This commit is contained in:
Kelvin M. Klann 2025-01-13 05:59:35 -03:00
parent 5c6fa6ab58
commit a53de4926b
2 changed files with 6 additions and 4 deletions

View file

@ -72,7 +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], [checking if current instance of firejail is running within a sandbox is disabled, 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"
])