Merge pull request #142780 from trofi/sequential-xalanc

xalanc: explicitly disable parallel building
This commit is contained in:
Artturi 2021-10-25 04:39:16 +03:00 committed by GitHub
commit 6f1eac0b77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,15 @@ in stdenv.mkDerivation rec {
buildInputs = [ xercesc getopt ];
# Parallel build fails as:
# c++ ... -c ... ExecutionContext.cpp
# ProblemListenerBase.hpp:28:10: fatal error: LocalMsgIndex.hpp: No such file or directory
# The build failure happens due to missing intra-project dependencies
# against generated headers. Future 1.12 version dropped
# autotools-based build system. Let's disable parallel builds until
# next release.
enableParallelBuilding = false;
meta = {
homepage = "http://xalan.apache.org/";
description = "A XSLT processor for transforming XML documents";