Commit f45fe166 authored by James Zern's avatar James Zern
Browse files

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
Showing with 2 additions and 2 deletions
...@@ -405,8 +405,8 @@ true ...@@ -405,8 +405,8 @@ true
} }
write_common_target_config_mk() { write_common_target_config_mk() {
local CC=${CC} local CC="${CC}"
local CXX=${CXX} local CXX="${CXX}"
enabled ccache && CC="ccache ${CC}" enabled ccache && CC="ccache ${CC}"
enabled ccache && CXX="ccache ${CXX}" enabled ccache && CXX="ccache ${CXX}"
print_webm_license $1 "##" "" print_webm_license $1 "##" ""
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment