diff options
author | Andreas Gampe <agampe@google.com> | 2015-03-12 09:58:53 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-03-12 09:58:53 -0700 |
commit | c0bbc88bd5217b6613b30a993931de9256311272 (patch) | |
tree | 08b2ef92debdf24e75faa74313df392e5c43f1d1 /tools | |
parent | d304629202eec2ab053a47fc7bcf10223b5ccea4 (diff) | |
download | art-c0bbc88bd5217b6613b30a993931de9256311272.zip art-c0bbc88bd5217b6613b30a993931de9256311272.tar.gz art-c0bbc88bd5217b6613b30a993931de9256311272.tar.bz2 |
ART: Allow multiple invoke-with for art script
Just like run-test, allow multiple invoke-with arguments that are
chained together.
Change-Id: I9f0d2d23fbff1cef32f0bb69e1bb803e157cfb73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/art | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ LIBART=libart.so while true; do if [ "$1" = "--invoke-with" ]; then shift - invoke_with="$1" + invoke_with="$invoke_with $1" shift elif [ "$1" = "-d" ]; then LIBART="libartd.so" |