mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: icu4c: Reinstate RUNPATH on shared libraries.
Fixes <http://bugs.gnu.org/18695>.
Reported by Mark H Weaver <mhw@netris.org>.
* gnu/packages/icu4c.scm (icu4c)[arguments]: In 'add-lib-to-runpath',
reinstate RUNPATH on files under lib/. Fixes a regression introduced
in commit 7239828
.
This commit is contained in:
parent
817efe8bb1
commit
7d09fb3464
1 changed files with 4 additions and 4 deletions
|
@ -68,12 +68,12 @@ (define-public icu4c
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(lib (string-append out "/lib")))
|
||||
;; Add LIB to the RUNPATH of all the binaries.
|
||||
;; Add LIB to the RUNPATH of all the libraries and binaries.
|
||||
(with-directory-excursion out
|
||||
(for-each (cut augment-rpath <> lib)
|
||||
(append
|
||||
(find-files "bin" ".*")
|
||||
(find-files "sbin" ".*"))))))
|
||||
(append (find-files "lib" ".*")
|
||||
(find-files "bin" ".*")
|
||||
(find-files "sbin" ".*"))))))
|
||||
%standard-phases)))))
|
||||
(synopsis "ICU, International Components for Unicode")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue