diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-09-12 17:25:39 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-09-12 22:13:52 +0200 |
commit | ddfc2fd8e0b4a4d2aa647c7ebf98e521bcd9dc2a (patch) | |
tree | e325fe027b39d98a80f2db3db2e7eb4d4556eba7 /gnu | |
parent | a68c69675fe3e4bc054430111240758f34e51c97 (diff) | |
download | guix-ddfc2fd8e0b4a4d2aa647c7ebf98e521bcd9dc2a.tar.gz |
gnu: e2fsprogs: Build with --disable-blkid.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: Pass --disable-blkid.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7be0d076ec..74a57e6d9b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -500,7 +500,12 @@ slabtop, and skill.") (native-inputs `(("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) ; for the libext2fs Info manual (arguments - '(#:phases (alist-cons-before + '(;; The 'blkid' command and library are already provided by util-linux, + ;; which is the preferred source for them (see, e.g., + ;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b336339909c90559b7db40b455f172>.) + #:configure-flags '("--disable-blkid") + + #:phases (alist-cons-before 'configure 'patch-shells (lambda _ (substitute* "configure" |