Don't check for .elf. .so is just a warning now.

This commit is contained in:
Daniel Martí 2013-03-19 15:16:46 +01:00
parent 4b472aed5a
commit b5047139e9

View file

@ -2008,8 +2008,8 @@ def scan_source(build_dir, root_dir, thisbuild):
msg = 'Found apk file, which should not be in the source - ' + fp msg = 'Found apk file, which should not be in the source - ' + fp
problems.append(msg) problems.append(msg)
elif curfile.endswith('.so') or curfile.endswith('.elf'): elif curfile.endswith('.so'):
msg = 'Found ELF at ' + fp print 'Warning: ELF at ' + fp
problems.append(msg) problems.append(msg)
elif curfile.endswith('.java'): elif curfile.endswith('.java'):