mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
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:
parent
5c6fa6ab58
commit
a53de4926b
2 changed files with 6 additions and 4 deletions
6
configure
vendored
6
configure
vendored
|
|
@ -1400,9 +1400,9 @@ Optional Features:
|
|||
--enable-analyzer enable GCC static analyzer
|
||||
--enable-sanitizer=[address | memory | undefined]
|
||||
enable a compiler-based sanitizer (debug)
|
||||
--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
|
||||
--disable-sandbox-check disable checking if firejail is running within a
|
||||
sandbox, only use this when developing firejail
|
||||
inside of a sandbox
|
||||
--enable-ids enable ids
|
||||
--enable-apparmor enable apparmor
|
||||
--enable-selinux SELinux labeling support
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue