[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] gnu: icu4c: Correct error in the binaries' runpath
From: |
John Darrington |
Subject: |
[PATCH] gnu: icu4c: Correct error in the binaries' runpath |
Date: |
Thu, 9 Oct 2014 22:27:22 +0200 |
* gnu/packages/icu4c.scm (icu4c): Apply the RUNPATH to the binaries,
instead of the libs
---
gnu/packages/icu4c.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/icu4c.scm b/gnu/packages/icu4c.scm
index 8c54cc9..7eb3874 100644
--- a/gnu/packages/icu4c.scm
+++ b/gnu/packages/icu4c.scm
@@ -68,10 +68,12 @@
(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 libraries.
+ ;; Add LIB to the RUNPATH of all the binaries.
(with-directory-excursion out
(for-each (cut augment-rpath <> lib)
- (find-files "lib" ".*")))))
+ (append
+ (find-files "bin" ".*")
+ (find-files "sbin" ".*"))))))
%standard-phases)))))
(synopsis "ICU, International Components for Unicode")
(description
--
1.7.10.4
- [PATCH] gnu: icu4c: Correct error in the binaries' runpath,
John Darrington <=