diff options
author | Jakob Unterwurzacher | 2016-12-06 22:44:58 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-12-06 22:47:18 +0100 |
commit | 6c86afb5cd63b099d1762da1a2ce3f76703dc4fb (patch) | |
tree | 1514b72d792604f10aba567eaac77284f0087f67 /build.bash | |
parent | 9b5738457483c18f2197eae758a72526ca6730ca (diff) |
build-without-openssl: compile statically
$ ldd gocryptfs
not a dynamic executable
$ file gocryptfs
gocryptfs: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped
Diffstat (limited to 'build.bash')
-rwxr-xr-x | build.bash | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ else # Go 1.5 wants an "=" here go build -ldflags="-X main.GitVersion=$GITVERSION -X main.GitVersionFuse=$GITVERSIONFUSE -X main.BuildTime=$BUILDTIME" $@ fi -(cd gocryptfs-xray; go build) +(cd gocryptfs-xray; go build $@) ./gocryptfs -version |