Skip to content

Commit

Permalink
fix missing previous so when build mulit-archs
Browse files Browse the repository at this point in the history
  • Loading branch information
garryyan committed Jul 14, 2017
1 parent e14f44f commit 18a2234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mars/libraries/build_android.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def main():
else:
return 0

if "1" == num:
if "1" == num or "3" == num:
libs_cache_dir = SO_CACHE_DIR + arch
symbols_cache_dir = SO_SYMBOL_CACHE_DIR + arch
libs_des_dir = SO_DES_DIR + arch
Expand All @@ -291,7 +291,7 @@ def main():
shutil.copy(lib, symbols_cache_dir)


if "1" == num:
if "1" == num or "3" == num:
if os.path.exists(SO_DES_DIR):
shutil.rmtree(SO_DES_DIR)
if os.path.exists(SO_SYMBOL_DES_IR):
Expand Down

0 comments on commit 18a2234

Please sign in to comment.