X Tutup
Skip to content

Commit 21fd449

Browse files
authored
upcxx: Install the example files (spack#23832)
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.
1 parent f8c2e1f commit 21fd449

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

var/spack/repos/builtin/packages/upcxx/package.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Upcxx(Package):
2525
homepage = "https://upcxx.lbl.gov"
2626
maintainers = ['bonachea']
2727

28-
git = 'https://bonachea@bitbucket.org/berkeleylab/upcxx.git'
28+
git = 'https://bitbucket.org/berkeleylab/upcxx.git'
2929
version('develop', branch='develop')
3030
version('master', branch='master')
3131

@@ -170,6 +170,8 @@ def install(self, spec, prefix):
170170

171171
make('install')
172172

173+
install_tree('example', prefix.example)
174+
173175
@run_after('install')
174176
@on_package_attributes(run_tests=True)
175177
def test_install(self):

0 commit comments

Comments
 (0)
X Tutup