guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

14/14: gnu: bison: Disable parallel build.


From: guix-commits
Subject: 14/14: gnu: bison: Disable parallel build.
Date: Sun, 16 Jun 2019 03:44:57 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit b1593c1c4fd8f4fc6df4c43cab51334426e3aa76
Author: Marius Bakke <address@hidden>
Date:   Sun Jun 16 09:39:00 2019 +0200

    gnu: bison: Disable parallel build.
    
    Fixes <https://bugs.gnu.org/36238.
    Reported by Carl Dong <address@hidden>.
    
    * gnu/packages/bison.scm (bison)[arguments]: New field.
---
 gnu/packages/bison.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/bison.scm b/gnu/packages/bison.scm
index 5f50ebf..2d7383c 100644
--- a/gnu/packages/bison.scm
+++ b/gnu/packages/bison.scm
@@ -41,6 +41,11 @@
        (base32
         "03c2pmq3bs0drdislnz6gm1rwz3n4pb2rz9navyxydppxg2rl597"))))
     (build-system gnu-build-system)
+    (arguments
+     '(;; Building in parallel on many-core systems may cause an error such as
+       ;; "mv: cannot stat 'examples/c/reccalc/scan.stamp.tmp': No such file or
+       ;; directory".  See <https://bugs.gnu.org/36238>.
+       #:parallel-build? #f))
     (native-inputs `(("perl" ,perl)
                      ;; m4 is not present in PATH when cross-building.
                      ("m4" ,m4)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]