diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-06-08 10:54:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-06-08 10:54:44 +0200 |
commit | 39160232281e393fd3a796807748cc33a2a09eb3 (patch) | |
tree | b3f074d20227accbd122cf6b657d9e42407316df /gnu | |
parent | a744719d70492f16a7d593902eeec56959fe7f19 (diff) | |
download | guix-39160232281e393fd3a796807748cc33a2a09eb3.tar.gz guix-39160232281e393fd3a796807748cc33a2a09eb3.zip |
gnu: libunistring: Work around parallel build issue.
* gnu/packages/libunistring.scm (libunistring)[arguments]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/libunistring.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/libunistring.scm b/gnu/packages/libunistring.scm index b48cb2d207..a7681009ac 100644 --- a/gnu/packages/libunistring.scm +++ b/gnu/packages/libunistring.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,6 +36,11 @@ "18q620269xzpw39dwvr9zpilnl2dkw5z5kz3mxaadnpv4k3kw3b1")))) (propagated-inputs '()) ; FIXME: add libiconv when !glibc (build-system gnu-build-system) + (arguments + ;; Work around parallel build issue whereby C files may be compiled before + ;; config.h is built: see <http://hydra.gnu.org/build/59381/nixlog/2/raw> and + ;; <http://lists.openembedded.org/pipermail/openembedded-core/2012-April/059850.html>. + '(#:parallel-build? #f)) (synopsis "C library for manipulating Unicode strings") (description "GNU libunistring is a library providing functions to manipulate |