ref: 606604109b126549f52904856ffaeff1807e241b
parent: 7af34402687ecfb95e52573ebac2af9e1c7cadc5
parent: e5b8bd020a1f1fc85150e84f4cbefa23e9519e8c
author: James Zern <jzern@google.com>
date: Tue May 20 11:23:29 EDT 2014
Merge "configure.sh: only execute toupper when necessary"
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1284,8 +1284,8 @@
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