Skip to content

Commit

Permalink
build: improve --disable-sandbox-check help string
Browse files Browse the repository at this point in the history
This amends commit 108327c ("feature: build: add
--disable-sandbox-check configure flag", 2024-12-27) / PR #6592.
  • Loading branch information
kmk3 committed Jan 13, 2025
1 parent 5c6fa6a commit a53de49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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"
])
Expand Down

0 comments on commit a53de49

Please sign in to comment.