commit | dcc8b3729dd1cb89ed344a3855bac9584ac183ac | [log] [tgz] |
---|---|---|
author | Ying Wang <wangying@google.com> | Tue Jul 01 10:58:10 2014 -0700 |
committer | Ying Wang <wangying@google.com> | Tue Jul 01 10:58:10 2014 -0700 |
tree | 3cdbd09d33cd6fc15150974ed40baf9c5ed02595 | |
parent | 00c67a056837b5ebda1bda950265a1fa086b4e53 [diff] |
Use "$@" to preserve argument word breaks This fixes mmma broken due to quotes stripped in the argument passing. Change-Id: I6095c7ccf0660ba7b17a659f5df29b05e50e6303
diff --git a/envsetup.sh b/envsetup.sh index 3f22b81..b63182f 100644 --- a/envsetup.sh +++ b/envsetup.sh
@@ -1479,7 +1479,7 @@ function make() { local start_time=$(date +"%s") - command make $@ + command make "$@" local ret=$? local end_time=$(date +"%s") local tdiff=$(($end_time-$start_time))