From 1a9992c1f2e44f5a2cb8daffa7bcf5b272d6bec4 Mon Sep 17 00:00:00 2001 From: Adam Strzelecki Date: Tue, 2 Sep 2014 20:31:22 +0200 Subject: Fix bash syntax error in configure Fixes missing space before `]` in test condition introduced in 8d5772533887266d. Change-Id: I741c291677f32056a0a0bec12cb4d9fd293a2021 Reviewed-by: Thiago Macieira --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 7cbd11d98d..0c65aac14a 100755 --- a/configure +++ b/configure @@ -6636,7 +6636,7 @@ if [ "$CFG_OPENSSL" = "linked" ] && [ "$OPENSSL_LIBS" = "" ]; then echo "For example:" echo " OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked" fi -if [ "$CFG_JOURNALD" = "yes" ] || [ "$CFG_SLOG2" = "yes"]; then +if [ "$CFG_JOURNALD" = "yes" ] || [ "$CFG_SLOG2" = "yes" ]; then echo echo "NOTE: journald or slog2 integration is enabled." echo "If your users intend on developing applications against this build," -- cgit v1.2.3