2017-06-04 19:25:08 +02:00
|
|
|
#!/bin/bash -eu
|
2016-10-04 09:51:14 +02:00
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2017-06-04 19:25:08 +02:00
|
|
|
CGO_ENABLED=0 source ./build.bash -tags without_openssl
|
2020-04-18 16:55:41 +02:00
|
|
|
|
2020-05-03 20:47:39 +02:00
|
|
|
if ldd gocryptfs 2> /dev/null ; then
|
2020-04-18 16:55:41 +02:00
|
|
|
echo "build-without-openssl.bash: error: compiled binary is not static"
|
|
|
|
exit 1
|
|
|
|
fi
|