summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-18 23:04:28 +0800
committerGitHub <noreply@github.com>2020-09-18 10:04:28 -0500
commit8cb1192050c0cf7f1caff6218eeda59d7cc2b76e (patch)
tree709f96d1e92bef183c9cca17247d69f89b576994 /var
parenta4cdf664c62487697b5763faacd79e93809bf892 (diff)
downloadspack-8cb1192050c0cf7f1caff6218eeda59d7cc2b76e.tar.gz
spack-8cb1192050c0cf7f1caff6218eeda59d7cc2b76e.tar.bz2
spack-8cb1192050c0cf7f1caff6218eeda59d7cc2b76e.tar.xz
spack-8cb1192050c0cf7f1caff6218eeda59d7cc2b76e.zip
util-linux: fix build error (#18647)
* util-linux: fix build error * refine install stage
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/util-linux/package.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/util-linux/package.py b/var/spack/repos/builtin/packages/util-linux/package.py
index 28399f9339..1c13e43c42 100644
--- a/var/spack/repos/builtin/packages/util-linux/package.py
+++ b/var/spack/repos/builtin/packages/util-linux/package.py
@@ -41,3 +41,6 @@ class UtilLinux(AutotoolsPackage):
]
config_args.extend(self.enable_or_disable('libuuid'))
return config_args
+
+ def install(self, spec, prefix):
+ make('install', parallel=False)