| 1 |
changeset: 10701:b159befd3104
|
| 2 |
tag: tip
|
| 3 |
user: Mike Frysinger <vapier@gentoo.org>
|
| 4 |
date: Sun Apr 29 00:26:33 2012 -0400
|
| 5 |
summary: use = with `test`, not ==
|
| 6 |
|
| 7 |
diff -r d8a3ea854288 -r b159befd3104 configure.ac
|
| 8 |
--- a/configure.ac Fri Apr 27 00:55:42 2012 +0000
|
| 9 |
+++ b/configure.ac Sun Apr 29 00:26:33 2012 -0400
|
| 10 |
@@ -2591,7 +2591,7 @@
|
| 11 |
AC_DEFINE([SANDBOX_DARWIN], [1], [Sandbox using Darwin sandbox_init(3)])
|
| 12 |
elif test "x$sandbox_arg" = "xseccomp_filter" || \
|
| 13 |
( test -z "$sandbox_arg" && \
|
| 14 |
- test "x$have_seccomp_filter" == "x1" && \
|
| 15 |
+ test "x$have_seccomp_filter" = "x1" && \
|
| 16 |
test "x$ac_cv_header_linux_audit_h" = "xyes" && \
|
| 17 |
test "x$have_seccomp_audit_arch" = "x1" && \
|
| 18 |
test "x$have_linux_no_new_privs" = "x1" && \
|
| 19 |
|