diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-02 12:20:28 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-02 12:20:28 -0500 |
commit | 941acef009f28ed47bff54e78b72d075fcfc5986 (patch) | |
tree | e6ce42b3af85f51c17d2dc778af65001c49c513e /lib | |
parent | a03a35565e250818aeeebdc16c647ef5b30250a5 (diff) | |
download | spack-941acef009f28ed47bff54e78b72d075fcfc5986.tar.gz spack-941acef009f28ed47bff54e78b72d075fcfc5986.tar.bz2 spack-941acef009f28ed47bff54e78b72d075fcfc5986.tar.xz spack-941acef009f28ed47bff54e78b72d075fcfc5986.zip |
spack create should use setup_py() instead of python()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/create.py | 2 |
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. |