Skip to content
Snippets Groups Projects
Unverified Commit bdefac69 authored by Christoph Junghans's avatar Christoph Junghans Committed by GitHub
Browse files

miniqmc: fix install (#18857)

parent b272e00d
No related branches found
No related tags found
No related merge requests found
...@@ -31,5 +31,5 @@ def cmake_args(self): ...@@ -31,5 +31,5 @@ def cmake_args(self):
return args return args
def install(self, spec, prefix): def install(self, spec, prefix):
install_tree(join_path('../spack-build', 'bin'), prefix.bin) install_tree(join_path(self.build_directory, 'bin'), prefix.bin)
install_tree(join_path('../spack-build', 'lib'), prefix.lib) install_tree(join_path(self.build_directory, 'lib'), prefix.lib)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment