summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAnthony Liguori2012-09-17 17:21:42 +0200
committerAnthony Liguori2012-09-17 17:21:42 +0200
commit509e9c462d03c4b7edc4a0d277311a7f45c9c046 (patch)
treef081154c44f3836f25502d654ade6e011ea7125e /configure
parentMerge remote-tracking branch 'spice/spice.v60' into staging (diff)
parentconfigure: fix seccomp check (diff)
downloadqemu-509e9c462d03c4b7edc4a0d277311a7f45c9c046.tar.gz
qemu-509e9c462d03c4b7edc4a0d277311a7f45c9c046.tar.xz
qemu-509e9c462d03c4b7edc4a0d277311a7f45c9c046.zip
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches: configure: fix seccomp check arch_init.c: add missing '%' symbols before PRIu64 in debug printfs kvm: Fix warning from static code analysis qapi: Fix enumeration typo error console: Clean up bytes per pixel calculation Fix copy&paste typos in documentation comments linux-user: Remove #if 0'd cpu_get_real_ticks() definition ui: Fix spelling in comment (ressource -> resource) Spelling fixes in comments and macro names (ressource -> resource) Fix spelling (licenced -> licensed) in GPL Spelling fixes in comments and documentation srp: Don't use QEMU_PACKED for single elements of a structured type
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index b7191151ef..8564142cc5 100755
--- a/configure
+++ b/configure
@@ -1433,10 +1433,10 @@ if test "$seccomp" != "no" ; then
LIBS=`$pkg_config --libs libseccomp`
seccomp="yes"
else
- seccomp="no"
if test "$seccomp" = "yes"; then
feature_not_found "libseccomp"
fi
+ seccomp="no"
fi
fi
##########################################