summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-01-02 13:48:15 +0100
committerLudovic Courtès <ludo@gnu.org>2013-01-02 13:48:15 +0100
commita974a0be5b6b8763b54ea23d4dea508898a82b21 (patch)
tree534dbd9d74ff184ab5f23a4186b5a1ba2b4340a7
parentf9975b5a49274e465ea29a5eeb83c4b51bc1f5da (diff)
downloadpatches-a974a0be5b6b8763b54ea23d4dea508898a82b21.tar
patches-a974a0be5b6b8763b54ea23d4dea508898a82b21.tar.gz
distro: openssl: Build shared libraries.
* distro/packages/openssl.scm (openssl): `configure' phase: pass "shared --libdir=lib".
-rw-r--r--distro/packages/openssl.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/distro/packages/openssl.scm b/distro/packages/openssl.scm
index 5ea9ace4f9..8f40307d4e 100644
--- a/distro/packages/openssl.scm
+++ b/distro/packages/openssl.scm
@@ -47,7 +47,10 @@
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(zero?
- (system* "./config" (string-append "--prefix=" out)))))
+ (system* "./config"
+ "shared" ; build shared libraries
+ "--libdir=lib"
+ (string-append "--prefix=" out)))))
(alist-cons-before
'patch-source-shebangs 'patch-tests
(lambda* (#:key inputs #:allow-other-keys)