diff options
author | Eric Koegel <eric.koegel@gmail.com> | 2014-10-02 20:17:02 +0300 |
---|---|---|
committer | Eric Koegel <eric.koegel@gmail.com> | 2014-10-02 20:17:02 +0300 |
commit | 5d59bcffd0f323c1948da847a9abc9e5625ef0f0 (patch) | |
tree | fa32976a3293790d47b76f287ec58155f2254996 /configure.ac | |
parent | 2f5698642401f7d7ccd20e623acdf84a2fad4af6 (diff) | |
download | ConsoleKit2-5d59bcffd0f323c1948da847a9abc9e5625ef0f0.tar.gz |
Fix missing opening [ in polkit check
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1b85908..3d74ee1 100644 --- a/configure.ac +++ b/configure.ac @@ -75,7 +75,7 @@ AS_IF([test "x$enable_polkit" != "xno"], [ AC_MSG_ERROR([PolicyKit support explicitly requested but dependencies not found]) fi ]) -AS_IF([test "x$have_polkit" = "xyes"], +AS_IF([test "x$have_polkit" = "xyes"], [ AC_DEFINE([HAVE_POLKIT], [], [Define if we have polkit]) ]) AM_CONDITIONAL([HAVE_POLKIT], [test "x$have_polkit" = "xyes"]) |