diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-09-28 11:43:24 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-09-28 12:26:50 +0300 |
commit | 523ecbbbedfed6bd902309286e00a6f04b1ff195 (patch) | |
tree | 5399df88a568525d9cfe22904d6beb7c47d4fe9b | |
parent | 4cb87d63e1c06eb99f90f33bd8a68d73975e4d72 (diff) | |
download | patches-523ecbbbedfed6bd902309286e00a6f04b1ff195.tar patches-523ecbbbedfed6bd902309286e00a6f04b1ff195.tar.gz |
gnu: libical: Fix libdir install path.
Reported by sadiq on IRC.
* gnu/packages/calendar.scm (libical)[arguments]: Remove configure flag
adding /lib64 to rpath, add flag to force libdir to /lib.
-rw-r--r-- | gnu/packages/calendar.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index e7d21d2ce7..9a3aab33ab 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2015 David Thompson <davet@gnu.org> ;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> -;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Troy Sankey <sankeytms@gmail.com> ;;; Copyright © 2016 Stefan Reichoer <stefan@xsteve.at> ;;; @@ -55,9 +55,8 @@ (arguments '(#:tests? #f ; test suite appears broken #:configure-flags - (list (string-append "-DCMAKE_INSTALL_RPATH=" - (assoc-ref %outputs "out") "/lib:" - (assoc-ref %outputs "out") "/lib64")) + (list (string-append "-DCMAKE_INSTALL_LIBDIR=" + (assoc-ref %outputs "out") "/lib")) #:phases (modify-phases %standard-phases (add-before 'configure 'patch-paths |