diff options
author | Roman Briskine <brisk022@users.noreply.github.com> | 2020-03-27 03:32:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-26 22:32:19 -0500 |
commit | ef7837410e32dac1c892a62a5deae10bc0c08da6 (patch) | |
tree | 211b8d17086ef4c2466105396facfa9a64783bc4 | |
parent | 7b4354b4c3b6f3aed19bbd6be96e8a42a0c272ef (diff) | |
download | spack-ef7837410e32dac1c892a62a5deae10bc0c08da6.tar.gz spack-ef7837410e32dac1c892a62a5deae10bc0c08da6.tar.bz2 spack-ef7837410e32dac1c892a62a5deae10bc0c08da6.tar.xz spack-ef7837410e32dac1c892a62a5deae10bc0c08da6.zip |
Fix non-root installations; update homepage (#15701)
-rw-r--r-- | var/spack/repos/builtin/packages/util-linux/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/util-linux/package.py b/var/spack/repos/builtin/packages/util-linux/package.py index b95f8222e2..d4887601a0 100644 --- a/var/spack/repos/builtin/packages/util-linux/package.py +++ b/var/spack/repos/builtin/packages/util-linux/package.py @@ -9,7 +9,7 @@ from spack import * class UtilLinux(AutotoolsPackage): """Util-linux is a suite of essential utilities for any Linux system.""" - homepage = "http://freecode.com/projects/util-linux" + homepage = "https://github.com/karelzak/util-linux" url = "https://www.kernel.org/pub/linux/utils/util-linux/v2.29/util-linux-2.29.2.tar.gz" list_url = "https://www.kernel.org/pub/linux/utils/util-linux" list_depth = 1 @@ -36,6 +36,7 @@ class UtilLinux(AutotoolsPackage): def configure_args(self): config_args = [ '--disable-use-tty-group', + '--disable-makeinstall-chown', ] config_args.extend(self.enable_or_disable('libuuid')) return config_args |