mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
Don't check for .elf. .so is just a warning now.
This commit is contained in:
parent
4b472aed5a
commit
b5047139e9
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue