diff --git a/configure b/configure index fd7b96cbe..0a7fbce79 100755 --- a/configure +++ b/configure @@ -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 diff --git a/configure.ac b/configure.ac index 55c096b1f..bd68dc977 100644 --- a/configure.ac +++ b/configure.ac @@ -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" ])