base.bbclass: Add BPN- and BP-based search path to FILESPATH.
authorRobert Schuster <thebohemian@openembedded.org>
Wed, 22 Oct 2008 12:51:32 +0000 (14:51 +0200)
committerRobert Schuster <thebohemian@openembedded.org>
Wed, 22 Oct 2008 12:52:11 +0000 (14:52 +0200)
classes/base.bbclass

index 071acfa..93a76aa 100644 (file)
@@ -184,7 +184,7 @@ def base_set_filespath(path, d):
                        filespath.append(os.path.join(p, o))
        return ":".join(filespath)
 
-FILESPATH = "${@base_set_filespath([ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ], d)}"
+FILESPATH = "${@base_set_filespath([ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ], d)}"
 
 def oe_filter(f, str, d):
        from re import match