mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 23:28:08 -07:00
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user