diff options
author | IHuismann <95963328+IHuismann@users.noreply.github.com> | 2024-11-26 17:01:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-26 17:01:18 +0100 |
commit | 141cdb681061b08db260b25b1275a38c4da7fde6 (patch) | |
tree | a8f39655365c4cf8761d9fbcdf5046b61cab8284 | |
parent | f2ab74efe533ae8b38acc4f5a46e7384e62b6ce6 (diff) | |
download | spack-141cdb681061b08db260b25b1275a38c4da7fde6.tar.gz spack-141cdb681061b08db260b25b1275a38c4da7fde6.tar.bz2 spack-141cdb681061b08db260b25b1275a38c4da7fde6.tar.xz spack-141cdb681061b08db260b25b1275a38c4da7fde6.zip |
adol-c: fix libs property (#36614)
-rw-r--r-- | var/spack/repos/builtin/packages/adol-c/package.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/adol-c/package.py b/var/spack/repos/builtin/packages/adol-c/package.py index a7eff71ad5..05528c665e 100644 --- a/var/spack/repos/builtin/packages/adol-c/package.py +++ b/var/spack/repos/builtin/packages/adol-c/package.py @@ -153,3 +153,8 @@ class AdolC(AutotoolsPackage): join_path(source_directory, "ADOL-C", "examples", "additional_examples") ): Executable("./checkpointing/checkpointing")() + + @property + def libs(self): + """The name of the library differs from the package name => own libs handling.""" + return find_libraries(["libadolc"], root=self.prefix, shared=True, recursive=True) |