summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMark W. Krentel <krentel@rice.edu>2019-06-13 02:53:30 -0500
committerTodd Gamblin <tgamblin@llnl.gov>2019-06-13 09:53:30 +0200
commitaca1bfdb6a6498b96126fd121989be8b8767a29f (patch)
treee388693d74f5d276174ae45ec06699c4ef35922c /var
parent4f2144a68eb76012b3e199f3f7b4b1786451fea2 (diff)
downloadspack-aca1bfdb6a6498b96126fd121989be8b8767a29f.tar.gz
spack-aca1bfdb6a6498b96126fd121989be8b8767a29f.tar.bz2
spack-aca1bfdb6a6498b96126fd121989be8b8767a29f.tar.xz
spack-aca1bfdb6a6498b96126fd121989be8b8767a29f.zip
intel-xed and hpcviewer: adapt to new resource placement (#11676)
Change 'destination' to 'placement' in the use of resource() for intel-xed and hpcviewer. Recent commits (1842873f and eb584d89) changed the directory path for a resource and thus broke the build for these packages.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/hpcviewer/package.py4
-rw-r--r--var/spack/repos/builtin/packages/intel-xed/package.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/hpcviewer/package.py b/var/spack/repos/builtin/packages/hpcviewer/package.py
index 8f16dea594..3bd0a94056 100644
--- a/var/spack/repos/builtin/packages/hpcviewer/package.py
+++ b/var/spack/repos/builtin/packages/hpcviewer/package.py
@@ -58,7 +58,7 @@ class Hpcviewer(Package):
version(ver, url=viewer_url(*key), sha256=viewer_sha[key])
resource(name='hpctraceviewer', url=trace_url(*key),
- sha256=trace_sha[key], destination='TRACE',
+ sha256=trace_sha[key], placement='TRACE',
when='@{0}'.format(ver))
depends_on('java@8', type=('build', 'run'))
@@ -73,7 +73,7 @@ class Hpcviewer(Package):
inst = Executable(join_path('.', 'install'))
inst(*args)
- cd(join_path('TRACE', 'hpctraceviewer'))
+ cd('TRACE')
inst = Executable(join_path('.', 'install'))
inst(*args)
diff --git a/var/spack/repos/builtin/packages/intel-xed/package.py b/var/spack/repos/builtin/packages/intel-xed/package.py
index 46772df1ad..586ea9d7ab 100644
--- a/var/spack/repos/builtin/packages/intel-xed/package.py
+++ b/var/spack/repos/builtin/packages/intel-xed/package.py
@@ -34,14 +34,14 @@ class IntelXed(Package):
version('develop', branch='master')
resource(name='mbuild',
git='https://github.com/intelxed/mbuild.git',
- branch='master', destination='',
+ branch='master', placement='mbuild',
when='@develop')
for (vers, xed_hash, mbuild_hash) in version_list:
version(vers, commit=xed_hash)
resource(name='mbuild',
git='https://github.com/intelxed/mbuild.git',
- commit=mbuild_hash, destination='',
+ commit=mbuild_hash, placement='mbuild',
when='@{0}'.format(vers))
variant('debug', default=False, description='Enable debug symbols')
@@ -65,7 +65,7 @@ class IntelXed(Package):
python_path = os.getenv('PYTHONPATH', '')
os.environ['PYTHONPATH'] = mbuild_dir + ':' + python_path
- mfile = Executable('./mfile.py')
+ mfile = Executable(join_path('.', 'mfile.py'))
args = ['-j', str(make_jobs),
'--cc=%s' % spack_cc,