Fix typo when reporting an error

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1258 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2007-02-04 18:44:37 +00:00
parent 72f8f889aa
commit 74e0426503

View File

@@ -51,7 +51,7 @@ def package_qa_check_devdbg(path, name,d):
import bb, os
if not "-dev" in name:
if path[-3:] == ".so" and os.path.islink(path):
bb.fatal("QA Issue: non -dev package %s contains symlink .so: %s" % name)
bb.fatal("QA Issue: non -dev package %s contains symlink .so: %s" % (name, os.path.basename (path)))
if not "-dbg" in name:
if '.debug' in path: