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:
Ying Wang 2014-07-01 10:58:10 -07:00
parent 00c67a0568
commit dcc8b3729d
1 changed files with 1 additions and 1 deletions

View File

@ -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))