diff options
author | Mark Abraham <Mark.J.Abraham@gmail.com> | 2024-11-19 18:12:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 12:12:10 -0500 |
commit | 22690a757680f6a3464f08c854cd647e3e9e7dd5 (patch) | |
tree | 7e83cc48c0c891f6f208de454e5fce28185abb5e | |
parent | 5325cfe8654ef6e7f02a7ed1e892a4f2870d07f0 (diff) | |
download | spack-22690a757680f6a3464f08c854cd647e3e9e7dd5.tar.gz spack-22690a757680f6a3464f08c854cd647e3e9e7dd5.tar.bz2 spack-22690a757680f6a3464f08c854cd647e3e9e7dd5.tar.xz spack-22690a757680f6a3464f08c854cd647e3e9e7dd5.zip |
Make oneAPI library-with-sdk specialize library class (#47632)
-rw-r--r-- | lib/spack/spack/build_systems/oneapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/oneapi.py b/lib/spack/spack/build_systems/oneapi.py index 6d60a7ae4f..9082d4f8ab 100644 --- a/lib/spack/spack/build_systems/oneapi.py +++ b/lib/spack/spack/build_systems/oneapi.py @@ -255,7 +255,7 @@ class IntelOneApiLibraryPackage(IntelOneApiPackage): return find_libraries("*", root=self.component_prefix.lib, recursive=not self.v2_layout) -class IntelOneApiLibraryPackageWithSdk(IntelOneApiPackage): +class IntelOneApiLibraryPackageWithSdk(IntelOneApiLibraryPackage): """Base class for Intel oneAPI library packages with SDK components. Contains some convenient default implementations for libraries |