diff options
author | Roman Bogorodskiy <bogorodskiy@gmail.com> | 2013-03-03 15:51:00 +0000 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-03-04 09:45:45 +0100 |
commit | 3ccec864bfc57ebdd524a0c9603aca829c64e3dc (patch) | |
tree | bd605a5eec7bedcaf72a823efca8bf92f822f3ea | |
parent | 205ed0e0e26010150950e9e963a9a36693b5f71e (diff) |
Fix missing bracket in trust module check
This fixes building --without-libtasn1
https://bugs.freedesktop.org/show_bug.cgi?id=61740
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ee7eb7e..44f4444 100644 --- a/configure.ac +++ b/configure.ac @@ -172,7 +172,7 @@ AS_IF([test "$with_libtasn1" != "yes"], [ enable_trust_module="no" ]) -AS_IF(test "$enable_trust_module" != "no"], [enable_trust_module="yes"]) +AS_IF([test "$enable_trust_module" != "no"], [enable_trust_module="yes"]) AM_CONDITIONAL(WITH_TRUST_MODULE, test "$enable_trust_module" = "yes") AC_MSG_RESULT([$enable_trust_module]) |