summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2012-05-18 12:25:24 +0100
committerColin Watson <cjwatson@debian.org>2012-05-18 12:25:24 +0100
commit6eb3e051f982c69fc373c75042eafde3ce599bca (patch)
treec1dbca4859ebbf6b36b1c1483ea42ab27916af4b /configure.ac
parentdabbdfacc9f6995b0739772a47704186dcf34ea5 (diff)
Fix a bashism in configure's seccomp_filter check.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0b2dfde96..14d1d196b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2615,7 +2615,7 @@ elif test "x$sandbox_arg" = "xdarwin" || \
2615 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)]) 2615 AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
2616elif test "x$sandbox_arg" = "xseccomp_filter" || \ 2616elif test "x$sandbox_arg" = "xseccomp_filter" || \
2617 ( test -z "$sandbox_arg" && \ 2617 ( test -z "$sandbox_arg" && \
2618 test "x$have_seccomp_filter" == "x1" && \ 2618 test "x$have_seccomp_filter" = "x1" && \
2619 test "x$ac_cv_header_linux_audit_h" = "xyes" && \ 2619 test "x$ac_cv_header_linux_audit_h" = "xyes" && \
2620 test "x$have_seccomp_audit_arch" = "x1" && \ 2620 test "x$have_seccomp_audit_arch" = "x1" && \
2621 test "x$have_linux_no_new_privs" = "x1" && \ 2621 test "x$have_linux_no_new_privs" = "x1" && \