gengetopt: disable parallelism

Test suite is not thread safe.
This commit is contained in:
Jonathan Ringer 2021-11-19 01:03:22 -08:00
parent 3b12b5b822
commit 49a2392306
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -15,7 +15,8 @@ stdenv.mkDerivation rec {
rm tests/test_conf_parser_save.sh
'';
enableParallelBuilding = true;
# test suite is not thread safe
enableParallelBuilding = false;
nativeBuildInputs = [ texinfo help2man ];