forked from openkylin/platform_build
Use "$@" to preserve argument word breaks
This fixes mmma broken due to quotes stripped in the argument passing. Change-Id: I6095c7ccf0660ba7b17a659f5df29b05e50e6303
This commit is contained in:
parent
00c67a0568
commit
dcc8b3729d
|
@ -1479,7 +1479,7 @@ function pez {
|
|||
function make()
|
||||
{
|
||||
local start_time=$(date +"%s")
|
||||
command make $@
|
||||
command make "$@"
|
||||
local ret=$?
|
||||
local end_time=$(date +"%s")
|
||||
local tdiff=$(($end_time-$start_time))
|
||||
|
|
Loading…
Reference in New Issue