qtwebkit: Fix pri install directory.
* gnu/packages/qt.scm (qtwebkit)[arguments]: Add "ECM_MKSPECS_INSTALL_DIR" to #:configure-flags.
This commit is contained in:
parent
1528593886
commit
0995a5692c
1 changed files with 5 additions and 1 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
|
;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
|
@ -2171,7 +2172,10 @@ different kinds of sliders, and much more.")
|
||||||
#:configure-flags (list ;"-DENABLE_API_TESTS=TRUE"
|
#:configure-flags (list ;"-DENABLE_API_TESTS=TRUE"
|
||||||
"-DPORT=Qt"
|
"-DPORT=Qt"
|
||||||
"-DUSE_LIBHYPHEN=OFF"
|
"-DUSE_LIBHYPHEN=OFF"
|
||||||
"-DUSE_SYSTEM_MALLOC=ON")))
|
"-DUSE_SYSTEM_MALLOC=ON"
|
||||||
|
;; XXX: relative dir installs to build dir?
|
||||||
|
(string-append "-DECM_MKSPECS_INSTALL_DIR="
|
||||||
|
%output "/lib/qt5/mkspecs/modules"))))
|
||||||
(home-page "https://www.webkit.org")
|
(home-page "https://www.webkit.org")
|
||||||
(synopsis "Web browser engine and classes to render and interact with web
|
(synopsis "Web browser engine and classes to render and interact with web
|
||||||
content")
|
content")
|
||||||
|
|
|
||||||
Reference in a new issue