summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2014-09-02 20:31:22 +0200
committerThiago Macieira <thiago.macieira@intel.com>2014-09-02 20:37:27 +0200
commit1a9992c1f2e44f5a2cb8daffa7bcf5b272d6bec4 (patch)
tree75de3e1b82d8fcf4f43eda6676b28234a9e75f17 /configure
parent8a7fcf0a7df833de56de4d7848c0f5f44ba1ee4f (diff)
Fix bash syntax error in configure
Fixes missing space before `]` in test condition introduced in 8d5772533887266d. Change-Id: I741c291677f32056a0a0bec12cb4d9fd293a2021 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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,"