diff options
author | Teague Sterling <teaguesterling@users.noreply.github.com> | 2024-06-10 22:41:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-10 23:41:11 -0600 |
commit | 9151fc1653317059097ae51a238cbb7c05197240 (patch) | |
tree | c6aa55da7541e52fe33629838cb4ced4eaaabcb9 | |
parent | 3a83b21ce1bd6fac4662f6d4087834d9092478ef (diff) | |
download | spack-9151fc1653317059097ae51a238cbb7c05197240.tar.gz spack-9151fc1653317059097ae51a238cbb7c05197240.tar.bz2 spack-9151fc1653317059097ae51a238cbb7c05197240.tar.xz spack-9151fc1653317059097ae51a238cbb7c05197240.zip |
linux-pam: fixes #44637 (#44638)
* package/linux-pam: dependencies
Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
* package/linux-pam: Fixes #44637
Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
* Update var/spack/repos/builtin/packages/linux-pam/package.py
Co-authored-by: Alec Scott <hi@alecbcs.com>
* Update var/spack/repos/builtin/packages/linux-pam/package.py
Co-authored-by: Alec Scott <hi@alecbcs.com>
* [@spackbot] updating style on behalf of teaguesterling
---------
Signed-off-by: Teague Sterling <teaguesterling@gmail.com>
Co-authored-by: Alec Scott <hi@alecbcs.com>
-rw-r--r-- | var/spack/repos/builtin/packages/linux-pam/package.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/linux-pam/package.py b/var/spack/repos/builtin/packages/linux-pam/package.py index e864d63b6b..dd8b31771c 100644 --- a/var/spack/repos/builtin/packages/linux-pam/package.py +++ b/var/spack/repos/builtin/packages/linux-pam/package.py @@ -27,6 +27,11 @@ class LinuxPam(AutotoolsPackage): 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) + def configure_args(self): config_args = ["--includedir=" + self.prefix.include.security] return config_args |