[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: ntfs-3g: Do not generate static libraries.
From: |
guix-commits |
Subject: |
01/02: gnu: ntfs-3g: 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 f8c15d8f4227a77ce4f361c08aea9df81d4d20aa
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Sep 24 13:59:47 2020 -0400
gnu: ntfs-3g: Do not generate static libraries.
* gnu/packages/linux.scm (ntfs-3g)[configure-flags]: Add "--disable-static".
---
gnu/packages/linux.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index f443299..5a78a32 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -5268,7 +5268,8 @@ supported.")
("fuse" ,fuse))) ;libuuid
(native-inputs `(("pkg-config" ,pkg-config)))
(arguments
- '(#:configure-flags (list "--exec-prefix=${prefix}"
+ '(#:configure-flags (list "--disable-static"
+ "--exec-prefix=${prefix}"
"--with-fuse=external" ;use our own FUSE
"--enable-mount-helper"
"--enable-posix-acls"