From 32bde4c297a89b3888cf576733c070481bbed484 Mon Sep 17 00:00:00 2001 From: Jonathan Silverman Date: Sun, 26 Jul 2020 19:19:30 -0600 Subject: [PATCH] fix bug in env.sh --- build/env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/env.sh b/build/env.sh index ad709a1..0f62155 100644 --- a/build/env.sh +++ b/build/env.sh @@ -19,7 +19,7 @@ if `pkg-config libsodium --exists`; then if [ $(version "$PKG_VER") -ge $(version "$MIN_LIBSODIUM_VERSION") ]; then [ ! -z "$SODIUM_BUILD_VERBOSE" ] && echo "Using packaged libsodium." else - [ ! -z "$SODIUM_BUILD_VERBOSE" ] echo "System packaged libsodium is too old." + [ ! -z "$SODIUM_BUILD_VERBOSE" ] && echo "System packaged libsodium is too old." export LIBSODIUM_INSTALL=1 fi else