diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-01-16 15:01:05 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-16 22:01:05 +0100 |
commit | fc7e48daf058ba4de90d19184d5ba228d509cc75 (patch) | |
tree | b9b5f8f28479e0ce4b2eebee3c4a8c2460c6923a | |
parent | 255df2455c7cbfa2cfc37199fc62bd81f88a1626 (diff) | |
download | spack-fc7e48daf058ba4de90d19184d5ba228d509cc75.tar.gz spack-fc7e48daf058ba4de90d19184d5ba228d509cc75.tar.bz2 spack-fc7e48daf058ba4de90d19184d5ba228d509cc75.tar.xz spack-fc7e48daf058ba4de90d19184d5ba228d509cc75.zip |
util-linux-uuid: don't install to system directories (#21000)
-rw-r--r-- | var/spack/repos/builtin/packages/util-linux-uuid/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/util-linux-uuid/package.py b/var/spack/repos/builtin/packages/util-linux-uuid/package.py index 4bb5418c48..6f6613ce92 100644 --- a/var/spack/repos/builtin/packages/util-linux-uuid/package.py +++ b/var/spack/repos/builtin/packages/util-linux-uuid/package.py @@ -39,6 +39,7 @@ class UtilLinuxUuid(AutotoolsPackage): '--without-systemd', '--disable-all-programs', '--without-python', - '--enable-libuuid' + '--enable-libuuid', + '--disable-bash-completion', ] return config_args |