Merge "configure.sh: only execute toupper when necessary"

This commit is contained in:
James Zern 2014-05-20 15:23:29 -07:00 коммит произвёл Gerrit Code Review
Родитель 7af3440268 e5b8bd020a
Коммит 606604109b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1284,8 +1284,8 @@ print_config_mk() {
local makefile=$2
shift 2
for cfg; do
upname="`toupper $cfg`"
if enabled $cfg; then
upname="`toupper $cfg`"
echo "${prefix}_${upname}=yes" >> $makefile
fi
done