Skip to content

Commit a53de49

Browse files
committed
build: improve --disable-sandbox-check help string
This amends commit 108327c ("feature: build: add --disable-sandbox-check configure flag", 2024-12-27) / PR #6592.
1 parent 5c6fa6a commit a53de49

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

configure

+3-3
Original file line numberDiff line numberDiff line change
@@ -1400,9 +1400,9 @@ Optional Features:
14001400
--enable-analyzer enable GCC static analyzer
14011401
--enable-sanitizer=[address | memory | undefined]
14021402
enable a compiler-based sanitizer (debug)
1403-
--disable-sandbox-check checking if current instance of firejail is running
1404-
within a sandbox is disabled, only use this when
1405-
developing firejail inside of a sandbox
1403+
--disable-sandbox-check disable checking if firejail is running within a
1404+
sandbox, only use this when developing firejail
1405+
inside of a sandbox
14061406
--enable-ids enable ids
14071407
--enable-apparmor enable apparmor
14081408
--enable-selinux SELinux labeling support

configure.ac

+3-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ AS_IF([test "x$enable_sanitizer" != "xno" ], [
7272
HAVE_SANDBOX_CHECK=""
7373
AC_SUBST([HAVE_SANDBOX_CHECK])
7474
AC_ARG_ENABLE([sandbox-check],
75-
[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])])
75+
[AS_HELP_STRING([--disable-sandbox-check],
76+
[disable checking if firejail is running within a sandbox, only use
77+
this when developing firejail inside of a sandbox])])
7678
AS_IF([test "x$enable_sandbox_check" != "xno"], [
7779
HAVE_SANDBOX_CHECK="-DHAVE_SANDBOX_CHECK"
7880
])

0 commit comments

Comments
 (0)