chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b472ae
)
Don't check for .elf. .so is just a warning now.
author
Daniel Martí
<mvdan@mvdan.cc>
Tue, 19 Mar 2013 14:16:46 +0000
(15:16 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Tue, 19 Mar 2013 14:16:46 +0000
(15:16 +0100)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index a948f821db56b0508238691e4dd681383c3119fa..998649d6ad14ab1183c20f79dc138f58a534fe37 100644
(file)
--- 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'):