diff options
author | Mark H Weaver <mhw@netris.org> | 2018-04-21 05:06:53 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-04-21 05:06:53 -0400 |
commit | d433108271cf78eabf008c5fb607c0bf1b2f25ee (patch) | |
tree | c554f83247bfebc668f8db306035bd8dfd568232 /gnu/packages | |
parent | c52872bfc418c6b2273f973dff8003ca9e062792 (diff) | |
download | guix-d433108271cf78eabf008c5fb607c0bf1b2f25ee.tar guix-d433108271cf78eabf008c5fb607c0bf1b2f25ee.tar.gz |
gnu: gobject-introspection: Combine duplicate 'arguments' fields.
* gnu/packages/glib.scm (gobject-introspection)[arguments]: Combine duplicate
'arguments' fields into one. Previously, the first one was being ignored.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/glib.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 2f789b9f9d..6ea73ac12e 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -321,10 +321,6 @@ dynamic loading, and an object system.") "gobject-introspection-girepository.patch" "gobject-introspection-absolute-shlib-path.patch")))) (build-system gnu-build-system) - (arguments - ;; The build system has at least one race condition involving Gio-2.0.gir - ;; which causes intermittent failures, as of 1.56.0. - `(#:parallel-build? #f)) (inputs `(("bison" ,bison) ("flex" ,flex) @@ -343,7 +339,10 @@ dynamic loading, and an object system.") (files '("lib/girepository-1.0"))))) (search-paths native-search-paths) (arguments - `(;; The patch 'gobject-introspection-absolute-shlib-path.patch' causes + `(;; The build system has at least one race condition involving Gio-2.0.gir + ;; which causes intermittent failures, as of 1.56.0. + #:parallel-build? #f + ;; The patch 'gobject-introspection-absolute-shlib-path.patch' causes ;; some tests to fail. #:tests? #f)) (home-page "https://wiki.gnome.org/GObjectIntrospection") |