gnu: virtualgl: Fix install libdir.
* gnu/packages/gl.scm (virtualgl)[arguments]: Force the install libdir to be in the store and not in the build directory.
This commit is contained in:
parent
f3cd6633ce
commit
07b8ea841e
|
@ -6,7 +6,7 @@
|
|||
;;; Copyright © 2016 ng0 <ng0@we.make.ritual.n0.is>
|
||||
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
|
@ -747,7 +747,10 @@ mixed vector/bitmap output.")
|
|||
"0rnid3hwrry9d5d4m7sygq00xxx976rgk00a3557m9r5kxbmy476"))))
|
||||
(arguments
|
||||
`(#:tests? #f ;; no tests are available
|
||||
#:configure-flags (list "-DVGL_USESSL=1"))) ;; use OpenSSL
|
||||
#:configure-flags (list
|
||||
(string-append "-DCMAKE_INSTALL_LIBDIR="
|
||||
(assoc-ref %outputs "out") "/lib")
|
||||
"-DVGL_USESSL=1"))) ;; use OpenSSL
|
||||
(build-system cmake-build-system)
|
||||
(inputs `(("glu" ,glu)
|
||||
("libjpeg-turbo" ,libjpeg-turbo)
|
||||
|
|
Loading…
Reference in New Issue