git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d5ffd6
)
insane.bbclass: fix some python stuff and make error message a bit more helpfull
author
Koen Kooi
<koen@openembedded.org>
Tue, 24 Oct 2006 13:17:33 +0000
(13:17 +0000)
committer
Koen Kooi
<koen@openembedded.org>
Tue, 24 Oct 2006 13:17:33 +0000
(13:17 +0000)
classes/insane.bbclass
patch
|
blob
|
history
diff --git
a/classes/insane.bbclass
b/classes/insane.bbclass
index
693295a
..
55f7721
100644
(file)
--- a/
classes/insane.bbclass
+++ b/
classes/insane.bbclass
@@
-50,11
+50,11
@@
def package_qa_check_devdbg(path, name,d):
import bb
if not "-dev" in name:
if path[-3:] == ".so":
- bb.error("QA Issue: non dev package contains .so
"
)
+ bb.error("QA Issue: non dev package contains .so
: %s" % name
)
if not "-dbg" in name:
- if
path.contains('.debug')
:
- bb.error("QA Issue: non debug package contains .dbg file
"
)
+ if
'.debug' in path
:
+ bb.error("QA Issue: non debug package contains .dbg file
: %s" % name
)
def package_qa_check_perm(path,name,d):
"""