gnu: wine64: Install libraries to /lib.
* gnu/packages/wine.scm (wine64)[arguments]: Remove inherited #:make-flags and add new #:make-flags argument. #:configure-flags: Change LDFLAGS from /lib64 to /lib.
This commit is contained in:
parent
1aa6582ee9
commit
e02693a3cb
@ -158,10 +158,13 @@ integrate Windows applications into your desktop.")
|
||||
(inherit wine)
|
||||
(name "wine64")
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
`(#:make-flags
|
||||
(list "SHELL=bash"
|
||||
(string-append "libdir=" %output "/lib"))
|
||||
#:configure-flags
|
||||
(list "--enable-win64"
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib64"))
|
||||
,@(strip-keyword-arguments '(#:configure-flags #:system)
|
||||
(string-append "LDFLAGS=-Wl,-rpath=" %output "/lib"))
|
||||
,@(strip-keyword-arguments '(#:configure-flags #:make-flags #:system)
|
||||
(package-arguments wine))))
|
||||
(synopsis "Implementation of the Windows API (64-bit version)")
|
||||
(supported-systems '("x86_64-linux" "aarch64-linux"))))
|
||||
|
Loading…
Reference in New Issue
Block a user