guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: wine64: Install libraries to /lib.


From: Danny Milosavljevic
Subject: 02/02: gnu: wine64: Install libraries to /lib.
Date: Fri, 8 Dec 2017 15:43:59 -0500 (EST)

dannym pushed a commit to branch master
in repository guix.

commit e02693a3cb210653ce547918b5fbf3c2b5d560c1
Author: Rutger Helling <address@hidden>
Date:   Thu Dec 7 10:06:38 2017 +0100

    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.
---
 gnu/packages/wine.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/wine.scm b/gnu/packages/wine.scm
index 0598392..b4f6573 100644
--- a/gnu/packages/wine.scm
+++ b/gnu/packages/wine.scm
@@ -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"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]