]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5488] Fixed syntax error in configure.ac
authorThomas Markwalder <tmark@isc.org>
Wed, 16 May 2018 15:17:32 +0000 (11:17 -0400)
committerThomas Markwalder <tmark@isc.org>
Wed, 16 May 2018 15:17:32 +0000 (11:17 -0400)
    Variable reference needed quotes.

configure.ac

index 5789823c36a5b6ef82c0fc09a0297649ace7e3f4..ad80eeb243277d5cccbf1c167cabf4710fc991d4 100644 (file)
@@ -788,7 +788,7 @@ AC_ARG_ENABLE([cql-static-link],
 AS_HELP_STRING([--enable-cql-static-link],
     [build programs with cassandra cpp driver static link [[default=no]]]),
     [enable_cql_static_link=yes], [enable_cql_static_link=no])
-AM_CONDITIONAL(USE_CQL_STATIC_LIB, test $enable_cql_static_lib = yes)
+AM_CONDITIONAL(USE_CQL_STATIC_LIB, test "$enable_cql_static_lib" = yes)
 #AC_DEFINE USE_CQL_STATIC_LIB? (unused)
 
 cql_lib="cassandra"