Merge "Fix unzip on sdk_mac build"

am: 2986542f65

Change-Id: I422250d37866c56fed294a288bb1b7a8084372e8
This commit is contained in:
David Brazdil 2018-07-02 06:20:16 -07:00 committed by android-build-merger
commit afb4d4cf8c
1 changed files with 2 additions and 1 deletions

View File

@ -2859,7 +2859,8 @@ define hiddenapi-copy-soong-jar
$(call hiddenapi-soong-input-dex,$(2)): $(1)
@rm -rf `dirname $$@`
@mkdir -p `dirname $$@`
unzip -o -DD -q $(1) 'classes*.dex' -d `dirname $$@`
unzip -o -q $(1) 'classes*.dex' -d `dirname $$@`
find `dirname $$@` -maxdepth 1 -name 'classes*.dex' | xargs touch
$(call hiddenapi-copy-dex-files,\
$(call hiddenapi-soong-input-dex,$(2)),\