diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-06-12 22:13:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 13:13:11 -0700 |
commit | eff4451cdd2370c90e4d248cfc6756f494aa942c (patch) | |
tree | 2b31b2c7bd08b4e6677a1af134169c8af18c51cd /var | |
parent | 8d0fc3e6390aabd684eac2b35a23dc467f16de28 (diff) | |
download | spack-eff4451cdd2370c90e4d248cfc6756f494aa942c.tar.gz spack-eff4451cdd2370c90e4d248cfc6756f494aa942c.tar.bz2 spack-eff4451cdd2370c90e4d248cfc6756f494aa942c.tar.xz spack-eff4451cdd2370c90e4d248cfc6756f494aa942c.zip |
Revert "linux-pam: fixes #44637" (#44682)
* Revert "linux-pam: fixes #44637 (#44638)"
This reverts commit 9151fc1653317059097ae51a238cbb7c05197240.
* linux-pam: drop redundant deps, add missing, dont build docs, nls
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/linux-pam/package.py | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/linux-pam/package.py b/var/spack/repos/builtin/packages/linux-pam/package.py index dd8b31771c..e13d05aaa6 100644 --- a/var/spack/repos/builtin/packages/linux-pam/package.py +++ b/var/spack/repos/builtin/packages/linux-pam/package.py @@ -21,17 +21,11 @@ class LinuxPam(AutotoolsPackage): version("1.3.1", sha256="eff47a4ecd833fbf18de9686632a70ee8d0794b79aecb217ebd0ce11db4cd0db") depends_on("libtirpc") - - depends_on("m4", type="build") - depends_on("autoconf", type="build") - depends_on("automake", type="build") - depends_on("libtool", type="build") - - def flag_handler(self, name, flags): - if name == "ldflags": - flags.append("-lintl") # spack/spack#44637 - return (flags, None, None) + depends_on("libxcrypt") def configure_args(self): - config_args = ["--includedir=" + self.prefix.include.security] - return config_args + return [ + "--disable-nls", + "--disable-regenerate-docu", + f"--includedir={self.prefix.include.security}", + ] |