diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-24 14:00:37 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-09-24 14:01:29 -0400 |
commit | d14a3e5c0c5b7b5e2d4efcc5076abbe9e4c03f50 (patch) | |
tree | 1dd6d43287f2d633cf0ceb3cf7f13f037b41509c /gnu | |
parent | f8c15d8f4227a77ce4f361c08aea9df81d4d20aa (diff) | |
download | guix-d14a3e5c0c5b7b5e2d4efcc5076abbe9e4c03f50.tar.gz |
gnu: nfs-utils: Do not generate static libraries.
* gnu/packages/nfs.scm (nfs)[configure-flags]: Add "--disable-static".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/nfs.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/nfs.scm b/gnu/packages/nfs.scm index 049de2c4b0..ba50ca5e01 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")) |