summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTimotej S <6674623+underhood@users.noreply.github.com>2022-01-04 15:14:10 +0100
committerGitHub <noreply@github.com>2022-01-04 15:14:10 +0100
commitd32914e41646bad7a1b99049d752a3b7a2a1dbc7 (patch)
tree5924f7d38b0944dc5f8002eb94fc46d9764737af /configure.ac
parent4e415775cda0b6677584d7773317976f9959848c (diff)
fix configure syntax error (#11937)
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 716d502311..2818bf8bce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -743,7 +743,7 @@ if test "$enable_cloud" != "no"; then
OPTIONAL_ACLK_CFLAGS="-I \$(abs_top_srcdir)/mqtt_websockets/src/include -I \$(abs_top_srcdir)/mqtt_websockets/c-rbuf/include -I \$(abs_top_srcdir)/mqtt_websockets/MQTT-C/include"
fi
- if "$new_cloud_protocol" != "no"; then
+ if test "$new_cloud_protocol" != "no"; then
can_build_new_cloud_protocol="yes"
AC_MSG_CHECKING([if protobuf available for New Cloud Protocol])
if test "${have_libprotobuf}" != "yes"; then