diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-13 23:20:44 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-10-13 23:43:06 +0200 |
commit | 0bd926b6e45ae0316583ef7079e988f6ea640fb6 (patch) | |
tree | 46dd514dfb0f7984da7b6b1fdc75c7b2e7baaf49 /gnu | |
parent | 7b1c73f330397ea563af7206ca1f0eb4f8246853 (diff) | |
download | guix-0bd926b6e45ae0316583ef7079e988f6ea640fb6.tar guix-0bd926b6e45ae0316583ef7079e988f6ea640fb6.tar.gz |
gnu: fakeroot: Omit static library.
* gnu/packages/linux.scm (fakeroot)[arguments]: Add "--disable-static"
to #:configure-flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f8c398ba41..4a54fd954b 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 _ |