mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Don't forcefully remove libs/<arch>, we now see binaries
This commit is contained in:
parent
cf852012ed
commit
c06b817449
2 changed files with 1 additions and 14 deletions
|
@ -943,10 +943,7 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
|
|||
for d in update_dirs:
|
||||
# Remove gen and bin dirs in libraries
|
||||
# rid of them...
|
||||
for baddir in [
|
||||
'gen', 'bin', 'obj', # ant
|
||||
'libs/armeabi-v7a', 'libs/armeabi', # jni
|
||||
'libs/mips', 'libs/x86']:
|
||||
for baddir in ['gen', 'bin', 'obj']
|
||||
badpath = os.path.join(root_dir, d, baddir)
|
||||
if os.path.exists(badpath):
|
||||
print "Removing '%s'" % badpath
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue