Skip to content
Snippets Groups Projects
Commit 9ca33236 authored by David Hashe's avatar David Hashe Committed by Ludovic Courtès
Browse files

gnu: webkitgtk: Fix compilation on x86_64.


* gnu/packages/webkit.scm (webkitgtk): Move library install path from lib64 to
 lib.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent ef80cced
No related branches found
No related tags found
No related merge requests found
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
;;;
;;; This file is part of GNU Guix.
;;;
......@@ -57,7 +58,12 @@ (define-public webkitgtk
(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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment