Merge pull request #10 from mixflame/master

fix bug in env.sh
master
didactic-drunk 2020-07-27 10:27:52 -07:00 committed by GitHub
commit a3eb428526
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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