From: Francis Dupont Date: Sun, 22 Jan 2017 16:57:50 +0000 (+0100) Subject: [5010] Trivial fix (uppercase CQL_CONFIG) X-Git-Tag: trac5243_base~9^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=325d49a7c693dfbd9b7f5ae340a34c56ced49d08;p=thirdparty%2Fkea.git [5010] Trivial fix (uppercase CQL_CONFIG) --- diff --git a/configure.ac b/configure.ac index d36867f40a..0e3b9d1cd8 100644 --- a/configure.ac +++ b/configure.ac @@ -1138,15 +1138,15 @@ fi # ... and at the shell level, so Makefile.am can take action depending on this. AM_CONDITIONAL(HAVE_PGSQL, test "$PG_CONFIG" != "") -cql_config="no" +CQL_CONFIG="no" AC_ARG_WITH([cql], AC_HELP_STRING([--with-cql=PATH], [path to the Cassandra CQL 'cql_config' script]), - [cql_config="$withval"]) + [CQL_CONFIG="$withval"]) -if test "${cql_config}" = "yes" ; then - cql_config="/usr/bin/cql_config" -elif test "${cql_config}" != "no" ; then +if test "${CQL_CONFIG}" = "yes" ; then + CQL_CONFIG="/usr/bin/cql_config" +elif test "${CQL_CONFIG}" != "no" ; then CQL_CONFIG="${withval}" fi