guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: gobject-introspection: Disable parallel build.


From: Ricardo Wurmus
Subject: 01/02: gnu: gobject-introspection: Disable parallel build.
Date: Fri, 16 Mar 2018 05:00:01 -0400 (EDT)

rekado pushed a commit to branch rhel6
in repository guix.

commit f732d190500f0bbd9d85c1f22dee9fadb36e715d
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Mar 16 09:37:39 2018 +0100

    gnu: gobject-introspection: Disable parallel build.
    
    * gnu/packages/glib.scm (gobject-introspection)[arguments]: Disable parallel
    build to avoid race condition.
---
 gnu/packages/glib.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index fe6b257..6cb4a2d 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2014, 2015, 2016, 2017 Mark H Weaver <address@hidden>
 ;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 Lukas Gradl <address@hidden>
-;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2017, 2018 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2017 Petter <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Alex Vong <address@hidden>
@@ -333,7 +333,10 @@ dynamic loading, and an object system.")
     (arguments
      `(;; The patch 'gobject-introspection-absolute-shlib-path.patch' causes
        ;; some tests to fail.
-       #:tests? #f))
+       #:tests? #f
+       ;; When parallel building is enabled, there can be a race condition as
+       ;; too many Python processes access the same pyc files.
+       #:parallel-build? #f))
     (home-page "https://wiki.gnome.org/GObjectIntrospection";)
     (synopsis "Generate interface introspection data for GObject libraries")
     (description



reply via email to

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