guix-commits
[Top][All Lists]
Advanced

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

59/94: gnu: libxrender: Do not build static libraries.


From: guix-commits
Subject: 59/94: gnu: libxrender: Do not build static libraries.
Date: Thu, 5 Dec 2019 12:15:36 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 2f9b757677fa919f801319f5aa0da5c24fb70cbf
Author: Marius Bakke <address@hidden>
Date:   Wed Dec 4 04:50:16 2019 +0100

    gnu: libxrender: Do not build static libraries.
    
    * gnu/packages/xorg.scm (libxrender)[arguments]: Add "--disable-static" in
      #:configure-flags.
---
 gnu/packages/xorg.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index d0524c7..a88e446 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -4670,13 +4670,13 @@ cannot be adequately worked around on the client side 
of the wire.")
           (base32
             "0j89cnb06g8x79wmmnwzykgkkfdhin9j7hjpvsxwlr3fz1wmjvf0"))))
     (build-system gnu-build-system)
-    ;; Disable zero malloc check that fails when cross-compiling.
     (arguments
      `(#:configure-flags
-       (list
-        ,@(if (%current-target-system)
-              '("--disable-malloc0returnsnull")
-              '()))))
+       (list "--disable-static"
+             ;; Disable zero malloc check that fails when cross-compiling.
+             ,@(if (%current-target-system)
+                   '("--disable-malloc0returnsnull")
+                   '()))))
     (propagated-inputs
       `(("xorgproto" ,xorgproto)))
     (inputs



reply via email to

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