Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 850ca0db authored by Ying Wang's avatar Ying Wang Committed by Sebastien Hertz
Browse files

Use "$@" to preserve argument word breaks

This fixes mmma broken due to quotes stripped in the argument passing.

(cherry picked from commit dcc8b372)

Change-Id: Ic8c4bb8e7cb347c1f80b5bc1648f63e58a010e8d
parent 98f7742a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1449,7 +1449,7 @@ function pez {
function make()
{
    local start_time=$(date +"%s")
    $MAKE_UTIL $@
    $MAKE_UTIL "$@"
    local ret=$?
    local end_time=$(date +"%s")
    local tdiff=$(($end_time-$start_time))