From: Daniel Martí Date: Tue, 19 Mar 2013 14:16:46 +0000 (+0100) Subject: Don't check for .elf. .so is just a warning now. X-Git-Tag: 0.1~670^2~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b5047139e9f76d3d9c4caa2db21b855eff261106;p=fdroidserver.git Don't check for .elf. .so is just a warning now. --- diff --git a/fdroidserver/common.py b/fdroidserver/common.py index a948f821..998649d6 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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'):