summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbecker33 <becker33@llnl.gov>2016-08-02 10:28:14 -0700
committerGitHub <noreply@github.com>2016-08-02 10:28:14 -0700
commit13d9eed85bd84f41250562f82054d35346015aae (patch)
tree3ee97354763e9a4f89a5325b9846474fe844b1df
parentb5a117c92389aad0c249cc0d88eec712b54b1977 (diff)
parent941acef009f28ed47bff54e78b72d075fcfc5986 (diff)
downloadspack-13d9eed85bd84f41250562f82054d35346015aae.tar.gz
spack-13d9eed85bd84f41250562f82054d35346015aae.tar.bz2
spack-13d9eed85bd84f41250562f82054d35346015aae.tar.xz
spack-13d9eed85bd84f41250562f82054d35346015aae.zip
Merge pull request #1424 from adamjstewart/features/setup_py
spack create should use setup_py() instead of python()
-rw-r--r--lib/spack/spack/cmd/create.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py
index da74ceb2f6..51bf17a44b 100644
--- a/lib/spack/spack/cmd/create.py
+++ b/lib/spack/spack/cmd/create.py
@@ -165,7 +165,7 @@ install_dict = {
'python': """\
# FIXME: Add logic to build and install here.
- python('setup.py', 'install', '--prefix={0}'.format(prefix))""",
+ setup_py('install', '--prefix={0}'.format(prefix))""",
'R': """\
# FIXME: Add logic to build and install here.