[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: nfs-utils: Do not generate static libraries.
From: |
guix-commits |
Subject: |
02/02: gnu: nfs-utils: Do not generate static libraries. |
Date: |
Thu, 24 Sep 2020 14:16:59 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit d14a3e5c0c5b7b5e2d4efcc5076abbe9e4c03f50
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Sep 24 14:00:37 2020 -0400
gnu: nfs-utils: Do not generate static libraries.
* gnu/packages/nfs.scm (nfs)[configure-flags]: Add "--disable-static".
---
gnu/packages/nfs.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/nfs.scm b/gnu/packages/nfs.scm
index 049de2c..ba50ca5 100644
--- a/gnu/packages/nfs.scm
+++ b/gnu/packages/nfs.scm
@@ -62,7 +62,8 @@
(build-system gnu-build-system)
(arguments
`(#:configure-flags
- `("--without-tcp-wrappers"
+ `("--disable-static"
+ "--without-tcp-wrappers"
,(string-append "--with-start-statd="
(assoc-ref %outputs "out") "/sbin/start-statd")
,(string-append "--with-krb5=" (assoc-ref %build-inputs "mit-krb5"))