From b00080d2daa520fdc517b02a8662df761a9e690c Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Sat, 30 May 2020 22:08:18 -0400 Subject: ssht: Install include files into "include/ssht" (#16879) --- var/spack/repos/builtin/packages/ssht/package.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/ssht/package.py b/var/spack/repos/builtin/packages/ssht/package.py index 7a4cd4857b..1500871e62 100644 --- a/var/spack/repos/builtin/packages/ssht/package.py +++ b/var/spack/repos/builtin/packages/ssht/package.py @@ -28,20 +28,20 @@ class Ssht(Package): def install(self, spec, prefix): make('default', 'SSHTDIR=.') - mkdirp(join_path(prefix, 'include')) + mkdirp(join_path(prefix, 'include', 'ssht')) install('src/c/ssht.h', - join_path(prefix, 'include', 'ssht.h')) + join_path(prefix, 'include', 'ssht', 'ssht.h')) install('src/c/ssht_adjoint.h', - join_path(prefix, 'include', 'ssht_adjoint.h')) + join_path(prefix, 'include', 'ssht', 'ssht_adjoint.h')) install('src/c/ssht_core.h', - join_path(prefix, 'include', 'ssht_core.h')) + join_path(prefix, 'include', 'ssht', 'ssht_core.h')) install('src/c/ssht_dl.h', - join_path(prefix, 'include', 'ssht_dl.h')) + join_path(prefix, 'include', 'ssht', 'ssht_dl.h')) install('src/c/ssht_error.h', - join_path(prefix, 'include', 'ssht_error.h')) + join_path(prefix, 'include', 'ssht', 'ssht_error.h')) install('src/c/ssht_sampling.h', - join_path(prefix, 'include', 'ssht_sampling.h')) + join_path(prefix, 'include', 'ssht', 'ssht_sampling.h')) install('src/c/ssht_types.h', - join_path(prefix, 'include', 'ssht_types.h')) + join_path(prefix, 'include', 'ssht', 'ssht_types.h')) install_tree('doc/c', join_path(prefix, 'doc')) install_tree('lib/c', join_path(prefix, 'lib')) -- cgit v1.2.3-60-g2f50