summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-05-14 15:37:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-05-14 15:37:08 +0200
commitda33122c84c18ea78932c6ee607824c0f3d4de99 (patch)
treefbeef4eec51405ea2b9d5814829dd192925d0c7f /configure.ac
parent9a73719c394049648278203448f7ba91f919e837 (diff)
Fix --with-export-validation check
Change-Id: I12b99b361a10f48435694719870ed16f2ce4a31a
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 ef6bf92e28d4..053fc5148c81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2633,7 +2633,7 @@ dnl ===================================================================
dnl Export file validation
dnl ===================================================================
AC_MSG_CHECKING([whether to enable export file validation])
-if test "with_export_validation" != "no"; then
+if test "$with_export_validation" = yes; then
AC_MSG_RESULT([yes])
AC_DEFINE(HAVE_EXPORT_VALIDATION)
else