diff options
author | Chris White <white238@llnl.gov> | 2020-05-12 16:57:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 16:57:25 -0700 |
commit | fdf38ec991ceb4059590e7a769fc11db4458aa0f (patch) | |
tree | 8e77e22bbd5008c101a166ef0474374d1da0f249 | |
parent | f43b7824caf2a699b20b94f10dca2d23be38c6b9 (diff) | |
download | spack-fdf38ec991ceb4059590e7a769fc11db4458aa0f.tar.gz spack-fdf38ec991ceb4059590e7a769fc11db4458aa0f.tar.bz2 spack-fdf38ec991ceb4059590e7a769fc11db4458aa0f.tar.xz spack-fdf38ec991ceb4059590e7a769fc11db4458aa0f.zip |
Fix axom install target (#16613)
-rw-r--r-- | var/spack/repos/builtin/packages/axom/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/axom/package.py b/var/spack/repos/builtin/packages/axom/package.py index 84eeac28b9..46b411b4e7 100644 --- a/var/spack/repos/builtin/packages/axom/package.py +++ b/var/spack/repos/builtin/packages/axom/package.py @@ -512,4 +512,4 @@ class Axom(CMakePackage, CudaPackage): @run_after('install') def install_cmake_cache(self): - install(self._get_host_config_path(spec), prefix) + install(self._get_host_config_path(self.spec), prefix) |