Skip to content

Commit ea80b39

Browse files
committed
subversion: disable parallel installs
Without the change parallel install fails as: $ install flags: -j16 ... ... collect2: error: ld returned 1 exit status libtool: error: error: relink 'libsvn_ra_serf-1.la' with the above command before installing it make: *** [build-outputs.mk:1316: install-serf-lib] Error 1 make: *** Waiting for unfinished jobs.... /nix/store/1qasgqvab0xh2jcy00x9b1zh39dw7m8f-bin
1 parent 82c5a2b commit ea80b39

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

  • pkgs/applications/version-management/subversion

pkgs/applications/version-management/subversion/default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ let
100100
inherit perlBindings pythonBindings;
101101

102102
enableParallelBuilding = true;
103+
# Missing install dependencies:
104+
# libtool: error: error: relink 'libsvn_ra_serf-1.la' with the above command before installing it
105+
# make: *** [build-outputs.mk:1316: install-serf-lib] Error 1
106+
enableParallelInstalling = false;
103107

104108
nativeCheckInputs = [ python3 ];
105109
doCheck = false; # fails 10 out of ~2300 tests

0 commit comments

Comments
 (0)