guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: bison: Disable parallel tests, too.


From: guix-commits
Subject: 01/01: gnu: bison: Disable parallel tests, too.
Date: Mon, 17 Jun 2019 05:51:44 -0400 (EDT)

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

commit 2c35ae82192fd6f1732b15fa41aec87aa61a1879
Author: Marius Bakke <address@hidden>
Date:   Mon Jun 17 11:23:44 2019 +0200

    gnu: bison: Disable parallel tests, too.
    
    * gnu/packages/bison.scm (bison)[arguments]: Add #:parallel-tests?.
---
 gnu/packages/bison.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bison.scm b/gnu/packages/bison.scm
index 2d7383c..5ebc883 100644
--- a/gnu/packages/bison.scm
+++ b/gnu/packages/bison.scm
@@ -45,7 +45,11 @@
      '(;; 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))
+       #:parallel-build? #f
+       ;; Similarly, when building tests in parallel, Make may produce this 
error:
+       ;; "./examples/c/reccalc/scan.l:13:10: fatal error: parse.h: No such 
file
+       ;; or directory".  Full log in <https://bugs.gnu.org/36238>.
+       #:parallel-tests? #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]