1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Don't check for .elf. .so is just a warning now.

This commit is contained in:
Daniel Martí 2013-03-19 15:16:46 +01:00
parent 4b472aed5a
commit b5047139e9

View File

@ -2008,8 +2008,8 @@ def scan_source(build_dir, root_dir, thisbuild):
msg = 'Found apk file, which should not be in the source - ' + fp
problems.append(msg)
elif curfile.endswith('.so') or curfile.endswith('.elf'):
msg = 'Found ELF at ' + fp
elif curfile.endswith('.so'):
print 'Warning: ELF at ' + fp
problems.append(msg)
elif curfile.endswith('.java'):