diff options
author | 2020-07-13 05:58:42 +0000 | |
---|---|---|
committer | 2020-07-13 05:58:42 +0000 | |
commit | b7cea24fe39e30dedb6fabe7b7c33f6f4d79c02c (patch) | |
tree | bb056e2ea7c2e34dd26aad9798ca491fcc0432b3 /java/aar.go | |
parent | 9d98ac15bb11703b243b7137e6b4abdb61871c59 (diff) | |
parent | d783bbbace0d7e5b7e333ffa276ff18216109cc7 (diff) |
Merge "Use unzip -DD"
Diffstat (limited to 'java/aar.go')
-rw-r--r-- | java/aar.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/aar.go b/java/aar.go index 500788f48..ad9b5e7d2 100644 --- a/java/aar.go +++ b/java/aar.go @@ -641,7 +641,7 @@ func (a *AARImport) DepsMutator(ctx android.BottomUpMutatorContext) { var unzipAAR = pctx.AndroidStaticRule("unzipAAR", blueprint.RuleParams{ Command: `rm -rf $outDir && mkdir -p $outDir && ` + - `unzip -qo -d $outDir $in && rm -rf $outDir/res && touch $out`, + `unzip -qoDD -d $outDir $in && rm -rf $outDir/res && touch $out`, }, "outDir") |