mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Fix elf check
This commit is contained in:
parent
e64a3ad515
commit
df4345e275
1 changed files with 5 additions and 2 deletions
|
@ -2009,7 +2009,10 @@ def scan_source(build_dir, root_dir, thisbuild):
|
||||||
problems.append(msg)
|
problems.append(msg)
|
||||||
|
|
||||||
elif curfile.endswith('.so'):
|
elif curfile.endswith('.so'):
|
||||||
print 'Warning: ELF at ' + fp
|
if '/jni' in r:
|
||||||
|
print 'Warning: Found ELF at ' + fp
|
||||||
|
else:
|
||||||
|
msg = 'Found ELF at ' + fp
|
||||||
problems.append(msg)
|
problems.append(msg)
|
||||||
|
|
||||||
elif curfile.endswith('.java'):
|
elif curfile.endswith('.java'):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue