gnu: e2fsprogs: Disable parallel build.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: Add #:parallel-build? #f.
This commit is contained in:
parent
87312f8aa1
commit
7d45365684
|
@ -595,7 +595,11 @@ slabtop, and skill.")
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
("texinfo" ,texinfo))) ;for the libext2fs Info manual
|
("texinfo" ,texinfo))) ;for the libext2fs Info manual
|
||||||
(arguments
|
(arguments
|
||||||
'(;; util-linux is the preferred source for some of the libraries and
|
'(;; Parallel building reliably yields a failure like this:
|
||||||
|
;; "make[2]: *** No rule to make target '../lib/libss.so', needed by
|
||||||
|
;; 'debufs'. Stop."
|
||||||
|
#:parallel-build? #f
|
||||||
|
;; util-linux is the preferred source for some of the libraries and
|
||||||
;; commands, so disable them (see, e.g.,
|
;; commands, so disable them (see, e.g.,
|
||||||
;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b33633>.)
|
;; <http://git.buildroot.net/buildroot/commit/?id=e1ffc2f791b33633>.)
|
||||||
#:configure-flags '("--disable-libblkid"
|
#:configure-flags '("--disable-libblkid"
|
||||||
|
|
Loading…
Reference in New Issue