build-without-openssl.bash: suppress "not a dynamic executable" message

We redirected the wrong ldd fd to /dev/null. Fix it.
This commit is contained in:
Jakob Unterwurzacher 2020-05-03 20:47:39 +02:00
parent feaeee90e2
commit 3e4545bbac
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ cd "$(dirname "$0")"
CGO_ENABLED=0 source ./build.bash -tags without_openssl
if ldd gocryptfs > /dev/null ; then
if ldd gocryptfs 2> /dev/null ; then
echo "build-without-openssl.bash: error: compiled binary is not static"
exit 1
fi