diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-04-05 01:17:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-05 01:17:30 +0200 |
commit | 3e462da5c1c48c43f6da95cba6237e24452b2d6c (patch) | |
tree | 3a72ab30adabd5188fb405efdb53ea9dc9484419 /gnu/packages/openssl.scm | |
parent | 353fda815e8b7863408857048aff224bbd0716d5 (diff) | |
download | guix-3e462da5c1c48c43f6da95cba6237e24452b2d6c.tar guix-3e462da5c1c48c43f6da95cba6237e24452b2d6c.tar.gz |
gnu: openssl: Set appropriate RUNPATH on shared libraries.
Fixes <http://bugs.gnu.org/20041>.
Reported by taylanbayirli@gmail.com (Taylan Ulrich Bayırlı/Kammer).
* gnu/packages/patches/openssl-runpath.patch: New file.
* gnu/packages/openssl.scm (openssl)[source]: Use it.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/openssl.scm')
-rw-r--r-- | gnu/packages/openssl.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/openssl.scm b/gnu/packages/openssl.scm index 6acbb12737..1ed7a7a1f2 100644 --- a/gnu/packages/openssl.scm +++ b/gnu/packages/openssl.scm @@ -36,7 +36,8 @@ ".tar.gz")) (sha256 (base32 - "0jijgzf72659pikms2bc5w31h78xrd1h5zp2r01an2h340y3kdhm")))) + "0jijgzf72659pikms2bc5w31h78xrd1h5zp2r01an2h340y3kdhm")) + (patches (list (search-patch "openssl-runpath.patch"))))) (build-system gnu-build-system) (native-inputs `(("perl" ,perl))) (arguments |