vpnc: disable install parallelism
Without the change parallel installs fail as: install flags: -j1 ... install -m644 src/doc/*.md ...-vpnc-unstable-2021-11-04/share/doc/vpnc install: target '...-vpnc-unstable-2021-11-04/share/doc/vpnc': No such file or directory
This commit is contained in:
parent
b3d8d75db8
commit
49000d52e0
@ -32,6 +32,10 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Missing install depends:
|
||||
# install: target '...-vpnc-unstable-2021-11-04/share/doc/vpnc': No such file or directory
|
||||
# make: *** [Makefile:149: install-doc] Error 1
|
||||
enableParallelInstalling = false;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://davidepucci.it/doc/vpnc/";
|
||||
|
Loading…
Reference in New Issue
Block a user