summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-05-19 11:36:12 -0700
committerJames Zern <jzern@google.com>2014-05-19 11:36:12 -0700
commite5b8bd020a1f1fc85150e84f4cbefa23e9519e8c (patch)
tree971e093a8f55b4460e2a5d4680aff792ef216ba1 /build
parent0249531bb90a59439d4f72f38ce184beefd8732e (diff)
downloadlibvpx-e5b8bd020a1f1fc85150e84f4cbefa23e9519e8c.tar
libvpx-e5b8bd020a1f1fc85150e84f4cbefa23e9519e8c.tar.gz
libvpx-e5b8bd020a1f1fc85150e84f4cbefa23e9519e8c.tar.bz2
libvpx-e5b8bd020a1f1fc85150e84f4cbefa23e9519e8c.zip
configure.sh: only execute toupper when necessary
speeds up windows configure by ~40% Change-Id: Ie3138b8fe39ff4c901c35c5d689c1ed12da34866
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index c07b04978..ad7dc8256 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -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