summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-03-06 15:58:37 -0800
committerJames Zern <jzern@google.com>2014-03-06 15:58:37 -0800
commitf45fe1668401d72c2937a52385b492216715c0f9 (patch)
tree9fc84aaf009c849ceb9a00b80f40d36a46769aad
parentd1aeef94a510ffcef8411954697a9fd7e113572d (diff)
downloadlibvpx-f45fe1668401d72c2937a52385b492216715c0f9.tar
libvpx-f45fe1668401d72c2937a52385b492216715c0f9.tar.gz
libvpx-f45fe1668401d72c2937a52385b492216715c0f9.tar.bz2
libvpx-f45fe1668401d72c2937a52385b492216715c0f9.zip
configure.sh: quote local variables
fixes issue #711 specifying a multiword CC, e.g., CC='gcc -m32', would cause the failure under dash reported in https://bugs.gentoo.org/show_bug.cgi?id=498136 patch by floppymaster at gmail dot com Change-Id: I2ba246f765646161538622739961ec0f6c2d8c2d
-rwxr-xr-xbuild/make/configure.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 449d1b9f8..43f8e7792 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -405,8 +405,8 @@ true
}
write_common_target_config_mk() {
- local CC=${CC}
- local CXX=${CXX}
+ local CC="${CC}"
+ local CXX="${CXX}"
enabled ccache && CC="ccache ${CC}"
enabled ccache && CXX="ccache ${CXX}"
print_webm_license $1 "##" ""