[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: fakeroot: Omit static library.
From: |
guix-commits |
Subject: |
02/04: gnu: fakeroot: Omit static library. |
Date: |
Wed, 13 Oct 2021 17:51:45 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 0bd926b6e45ae0316583ef7079e988f6ea640fb6
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Oct 13 23:20:44 2021 +0200
gnu: fakeroot: Omit static library.
* gnu/packages/linux.scm (fakeroot)[arguments]: Add "--disable-static"
to #:configure-flags.
---
gnu/packages/linux.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index f8c398b..4a54fd9 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7854,7 +7854,9 @@ the superuser to make device nodes.")
(stat:type (lstat file))))))))))))
(build-system gnu-build-system)
(arguments
- `(#:phases
+ `(#:configure-flags
+ (list "--disable-static")
+ #:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-Makefile.am
(lambda _