Commit be3eea9b authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "configure.sh: quote local variables"

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