diff options
author | Joseph Ciurej <ciurej1@llnl.gov> | 2016-10-06 14:43:49 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-06 14:43:49 -0700 |
commit | 82fcc5e1deabed8d6774bb13179ee1a4a026400a (patch) | |
tree | 4927778d433309bab6915c4da7a5114501e89b8a /share | |
parent | 415ddeecf8b2038074d90a18f0e956b726beb1a4 (diff) | |
download | spack-82fcc5e1deabed8d6774bb13179ee1a4a026400a.tar.gz spack-82fcc5e1deabed8d6774bb13179ee1a4a026400a.tar.bz2 spack-82fcc5e1deabed8d6774bb13179ee1a4a026400a.tar.xz spack-82fcc5e1deabed8d6774bb13179ee1a4a026400a.zip |
Feature Proposal : Make All Python Extensions User Configuration Independent (#1435)
* Updated all Python extension packages to use 'setup_py' on install.
* Fixed a few minor style issues with the updated Python packages.
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/csh/convert-pyext.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/share/spack/csh/convert-pyext.sh b/share/spack/csh/convert-pyext.sh deleted file mode 100644 index a48bcdbcca..0000000000 --- a/share/spack/csh/convert-pyext.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash --noprofile -PYEXT_REGEX=".*/.*/package.py" - -find var/spack/repos/builtin/packages/ -type f -regextype sed -regex ${PYEXT_REGEX} -exec \ - sed -i 's/python('\''setup.py'\'', /setup_py(/' {} \; |