avoid using ${var^} and ${var,} as they do not work in bash-3.2

Once these upgrade to EAPI=6, they can use these case modification
features, so leave a reminder note in there.
This commit is contained in:
Mike Frysinger
2015-11-10 20:26:49 -05:00
parent 8b26c09d67
commit 2347c6fe88
29 changed files with 119 additions and 59 deletions

View File

@@ -61,9 +61,13 @@ python_prepare_all(){
}
use_cvx() {
if use $1 ; then
local flag=$1
if use ${flag} ; then
# Switch to ^^ when we switch to EAPI=6.
#local uflag=${flag^^}
local uflag=$(tr '[:lower:]' '[:upper:]' <<<"${flag}")
sed -i \
-e "s/\(BUILD_${1^^} =\) 0/\1 1/" \
-e "s/\(BUILD_${uflag} =\) 0/\1 1/" \
setup.py || die
fi
}