From b5047139e9f76d3d9c4caa2db21b855eff261106 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=AD?= Date: Tue, 19 Mar 2013 15:16:46 +0100 Subject: [PATCH] Don't check for .elf. .so is just a warning now. --- fdroidserver/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'): -- 2.30.2