diff options
Diffstat (limited to 'extra/links/build')
-rwxr-xr-x | extra/links/build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/links/build b/extra/links/build new file mode 100755 index 00000000..51eedad9 --- /dev/null +++ b/extra/links/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --without-libevent \ + --with-ssl + +make +make DESTDIR="$1" install |