diff options
author | Elliott Hughes <enh@google.com> | 2013-01-08 15:45:41 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-01-08 15:45:41 -0800 |
commit | 54b3747f197fec38f91b1b74e81d812d8b55f1ad (patch) | |
tree | ef2f96eb5103e85825d77328e146845e51c53f69 | |
parent | 7688767f265f4f1e44018d3fa82e5b189e4bdf3e (diff) | |
download | art-54b3747f197fec38f91b1b74e81d812d8b55f1ad.zip art-54b3747f197fec38f91b1b74e81d812d8b55f1ad.tar.gz art-54b3747f197fec38f91b1b74e81d812d8b55f1ad.tar.bz2 |
Fix art script argument quoting.
$* is always a mistake, which is a shame because that's what everyone
learns first.
Change-Id: I0c18d13a42653cdde72b55ba7a4284e3454a5ba8
-rwxr-xr-x | tools/art | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,4 +40,4 @@ ANDROID_DATA=/tmp/android-data\ LD_LIBRARY_PATH=$ANDROID_HOST_OUT/lib\ exec $invoke_with $ANDROID_HOST_OUT/bin/$oatexec\ -Ximage:$ANDROID_HOST_OUT/framework/core.art \ - $* + "$@" |