summaryrefslogtreecommitdiff
path: root/share/spack/csh/convert-pyext.sh
blob: a48bcdbccaed7bd6f8c6a337f61394918e37adb5 (plain) (blame)
1
2
3
4
5
#!/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(/' {} \;