[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: webkitgtk: Fix compilation on x86_64.
From: |
Ludovic Courtès |
Subject: |
03/03: gnu: webkitgtk: Fix compilation on x86_64. |
Date: |
Tue, 05 May 2015 20:06:00 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 9ca3323608f183814a9313a08df3415075638aaf
Author: David Hashe <address@hidden>
Date: Tue May 5 01:48:28 2015 -0500
gnu: webkitgtk: Fix compilation on x86_64.
* gnu/packages/webkit.scm (webkitgtk): Move library install path from lib64
to
lib.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/webkit.scm | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/webkit.scm b/gnu/packages/webkit.scm
index e6de8ab..41b9b9a 100644
--- a/gnu/packages/webkit.scm
+++ b/gnu/packages/webkit.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Sou Bunnbu <address@hidden>
+;;; Copyright © 2015 David Hashe <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -57,7 +58,12 @@
(arguments
'(#:tests? #f ; no tests
#:build-type "Release" ; turn off debugging symbols to save space
- #:configure-flags '("-DPORT=GTK")))
+ #:configure-flags (list
+ "-DPORT=GTK"
+ (string-append ; uses lib64 by default
+ "-DLIB_INSTALL_DIR="
+ (assoc-ref %outputs "out") "/lib"))
+ #:make-flags '("lib=lib"))) ; uses lib64 by default
(native-inputs
`(("bison" ,bison)
("gettext" ,gnu-gettext)