diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/vim/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/vim/package.py b/var/spack/repos/builtin/packages/vim/package.py index 05d9d14639..5a854c144c 100644 --- a/var/spack/repos/builtin/packages/vim/package.py +++ b/var/spack/repos/builtin/packages/vim/package.py @@ -129,3 +129,9 @@ class Vim(AutotoolsPackage): 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) |