diff --git a/var/spack/repos/builtin/packages/vim/package.py b/var/spack/repos/builtin/packages/vim/package.py index 05d9d14639a..5a854c144c6 100644 --- a/var/spack/repos/builtin/packages/vim/package.py +++ b/var/spack/repos/builtin/packages/vim/package.py @@ -129,3 +129,9 @@ def configure_args(self): configure_args.append("--enable-cscope") return configure_args + + # Run the install phase with -j 1. There seems to be a problem with + # parallel builds that results in the creation of the links (e.g. view) + # to the vim binary silently failing. + def install(self, spec, prefix): + make('install', parallel=False)