me
/
guix
Archived
1
0
Fork 0

gnu: man-pages: Build sequentially.

Fixes <http://bugs.gnu.org/18701>.
Reported by Mark H Weaver <mhw@netris.org>.

* gnu/packages/man.scm (man-pages)[arguments]: Add #:parallel-build? #f.
master
Ludovic Courtès 2014-11-02 23:23:43 +01:00
parent d460204f2e
commit 3b509259bf
1 changed files with 6 additions and 0 deletions

View File

@ -129,6 +129,12 @@ the traditional flat-text whatis databases.")
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (alist-delete 'configure %standard-phases) '(#:phases (alist-delete 'configure %standard-phases)
;; The 'all' target depends on three targets that directly populate
;; $(MANDIR) based on its current contents. Doing that in parallel
;; leads to undefined behavior (see <http://bugs.gnu.org/18701>.)
#:parallel-build? #f
#:tests? #f #:tests? #f
#:make-flags (list (string-append "MANDIR=" #:make-flags (list (string-append "MANDIR="
(assoc-ref %outputs "out") (assoc-ref %outputs "out")