summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Bonachea <dobonachea@lbl.gov>2021-05-21 14:51:46 -0400
committerGitHub <noreply@github.com>2021-05-21 11:51:46 -0700
commit21fd449a03e2e22cec36a7a9e0442524980f4e49 (patch)
treeee3c7f774661f3c7b6e4f894c5fe7d8d378e9837
parentf8c2e1fc97a08b03460b4728fb531d331c856127 (diff)
downloadspack-e4s-21.05.tar.gz
spack-e4s-21.05.tar.bz2
spack-e4s-21.05.tar.xz
spack-e4s-21.05.zip
upcxx: Install the example files (#23832)e4s-21.05
This installs the example source files into $prefix/example, for use by the E4S Testsuite and other end users. Also fixes a harmless copy/paste error.
-rw-r--r--var/spack/repos/builtin/packages/upcxx/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/upcxx/package.py b/var/spack/repos/builtin/packages/upcxx/package.py
index d613581258..5eadf1596d 100644
--- a/var/spack/repos/builtin/packages/upcxx/package.py
+++ b/var/spack/repos/builtin/packages/upcxx/package.py
@@ -25,7 +25,7 @@ class Upcxx(Package):
homepage = "https://upcxx.lbl.gov"
maintainers = ['bonachea']
- git = 'https://bonachea@bitbucket.org/berkeleylab/upcxx.git'
+ git = 'https://bitbucket.org/berkeleylab/upcxx.git'
version('develop', branch='develop')
version('master', branch='master')
@@ -170,6 +170,8 @@ class Upcxx(Package):
make('install')
+ install_tree('example', prefix.example)
+
@run_after('install')
@on_package_attributes(run_tests=True)
def test_install(self):