diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-23 18:47:03 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-23 18:47:03 +0300 |
commit | dda85c312c1d37d60fd48263d3c91d87e40d91a7 (patch) | |
tree | 41f8c86ad4dc2ef781b3549e7d0a31452580064e /community/isync | |
parent | 8d6af07c9aa69448e28d98cff439458f0a9899e5 (diff) | |
download | repository-dda85c312c1d37d60fd48263d3c91d87e40d91a7.tar.gz |
isync: link statically
Diffstat (limited to 'community/isync')
-rwxr-xr-x | community/isync/build | 6 | ||||
-rw-r--r-- | community/isync/depends | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/community/isync/build b/community/isync/build index 09d87526..bbd53ee2 100755 --- a/community/isync/build +++ b/community/isync/build @@ -1,5 +1,9 @@ #!/bin/sh -e -./configure --prefix=/usr +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr + make make DESTDIR="$1" install diff --git a/community/isync/depends b/community/isync/depends index 1efa1eb7..837c7443 100644 --- a/community/isync/depends +++ b/community/isync/depends @@ -1,2 +1,2 @@ -libressl -cyrus-sasl +cyrus-sasl make +libressl make |