guix-commits
[Top][All Lists]
Advanced

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

03/20: gnu: xfsprogs: Omit static library.


From: guix-commits
Subject: 03/20: gnu: xfsprogs: Omit static library.
Date: Mon, 29 Nov 2021 19:09:13 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 215524a1166206e56b30f54228c19d1dd9a3c0ff
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Tue Nov 30 00:46:03 2021 +0100

    gnu: xfsprogs: Omit static library.
    
    * gnu/packages/linux.scm (xfsprogs)[arguments]:
    Add "--disable-static" to #:configure-flags.
    (xfsprogs-static)[arguments]: Undo it.
---
 gnu/packages/linux.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index c3a6a43..40cb49c 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7693,6 +7693,8 @@ compatible with Python's ConfigParser style of .INI 
files, including RFC
     (outputs (list "out" "python"))
     (arguments
      `(#:tests? #f   ; kernel/user integration tests are in package "xfstests"
+       #:configure-flags
+       (list "--disable-static")
        #:make-flags
        (list "V=1")
        #:phases
@@ -7732,6 +7734,9 @@ file systems.")
     (outputs (list "out"))
     (arguments
      (substitute-keyword-arguments (package-arguments xfsprogs)
+       ((#:configure-flags configure-flags '())
+        `(append ,configure-flags
+                 (list "--enable-static")))
        ((#:make-flags make-flags ''())
         `(cons* "LLDFLAGS=-all-static" ,make-flags))
        ((#:phases _ ''())



reply via email to

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