summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJoseph Ciurej <ciurej1@llnl.gov>2016-10-06 14:43:49 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-10-06 14:43:49 -0700
commit82fcc5e1deabed8d6774bb13179ee1a4a026400a (patch)
tree4927778d433309bab6915c4da7a5114501e89b8a /share
parent415ddeecf8b2038074d90a18f0e956b726beb1a4 (diff)
downloadspack-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.sh5
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(/' {} \;