summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/apr.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/apr.scm b/gnu/packages/apr.scm
index cfb3b6acd5..93609ad5ca 100644
--- a/gnu/packages/apr.scm
+++ b/gnu/packages/apr.scm
@@ -40,6 +40,11 @@
(list (search-patch "apr-skip-getservbyname-test.patch")))
(patch-flags '("-p0"))))
(build-system gnu-build-system)
+ (arguments
+ ;; Sometimes we end up with two processes concurrently trying to make
+ ;; 'libmod_test.la': <http://hydra.gnu.org/build/60266/nixlog/2/raw>.
+ ;; Thus, build sequentially.
+ '(#:parallel-build? #f))
(inputs `(("perl" ,perl)
("libtool" ,libtool)))
(home-page "http://apr.apache.org/")