diff options
author | Ross Burton <ross@openedhand.com> | 2007-02-04 18:44:37 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-02-04 18:44:37 +0000 |
commit | 74e04265035bbb5aaac4860790cfc6f9d4c05839 (patch) | |
tree | f38b7892de0e7dbf3944d3c51154640636d7ac1d /meta | |
parent | 72f8f889aaab0d4b864e0b245613a8f7d168b716 (diff) | |
download | poky-74e04265035bbb5aaac4860790cfc6f9d4c05839.tar.gz |
Fix typo when reporting an error
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1258 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/insane.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 09728f850e..4bceaaed82 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -51,7 +51,7 @@ def package_qa_check_devdbg(path, name,d): | |||
51 | import bb, os | 51 | import bb, os |
52 | if not "-dev" in name: | 52 | if not "-dev" in name: |
53 | if path[-3:] == ".so" and os.path.islink(path): | 53 | if path[-3:] == ".so" and os.path.islink(path): |
54 | bb.fatal("QA Issue: non -dev package %s contains symlink .so: %s" % name) | 54 | bb.fatal("QA Issue: non -dev package %s contains symlink .so: %s" % (name, os.path.basename (path))) |
55 | 55 | ||
56 | if not "-dbg" in name: | 56 | if not "-dbg" in name: |
57 | if '.debug' in path: | 57 | if '.debug' in path: |