mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Don't check for .elf. .so is just a warning now.
This commit is contained in:
parent
4b472aed5a
commit
b5047139e9
@ -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'):
|
||||
|
Loading…
Reference in New Issue
Block a user