distro: openssl: Build shared libraries.
* distro/packages/openssl.scm (openssl): `configure' phase: pass "shared --libdir=lib".
This commit is contained in:
parent
f9975b5a49
commit
a974a0be5b
|
@ -47,7 +47,10 @@
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(zero?
|
(zero?
|
||||||
(system* "./config" (string-append "--prefix=" out)))))
|
(system* "./config"
|
||||||
|
"shared" ; build shared libraries
|
||||||
|
"--libdir=lib"
|
||||||
|
(string-append "--prefix=" out)))))
|
||||||
(alist-cons-before
|
(alist-cons-before
|
||||||
'patch-source-shebangs 'patch-tests
|
'patch-source-shebangs 'patch-tests
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue