From 215524a1166206e56b30f54228c19d1dd9a3c0ff Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 30 Nov 2021 00:46:03 +0100 Subject: 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(+) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c3a6a43550..40cb49c5ce 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 _ ''()) -- cgit v1.2.3