mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: e2fsprogs: Don't build libraries and commands provided by util-linux.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: Add --disable-blkid --disable-libuuid --disable-uuidd --disable-fsck.
This commit is contained in:
parent
9f533d60df
commit
c44ed26ce7
1 changed files with 5 additions and 3 deletions
|
@ -528,10 +528,12 @@ (define-public e2fsprogs
|
|||
(native-inputs `(("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo))) ;for the libext2fs Info manual
|
||||
(arguments
|
||||
'(;; The 'blkid' command and library are already provided by util-linux,
|
||||
;; which is the preferred source for them (see, e.g.,
|
||||
'(;; util-linux is not the preferred source for some of the libraries and
|
||||
;; commands, so disable them (see, e.g.,
|
||||
;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b336339909c90559b7db40b455f172>.)
|
||||
#:configure-flags '("--disable-blkid"
|
||||
#:configure-flags '("--disable-libblkid"
|
||||
"--disable-libuuid" "--disable-uuidd"
|
||||
"--disable-fsck"
|
||||
|
||||
;; Install libext2fs et al.
|
||||
"--enable-elf-shlibs")
|
||||
|
|
Loading…
Reference in a new issue