[oe-commits] Richard Purdie : base.bbclass: Drop P and PN from FILESPATH

git at git.openembedded.org git at git.openembedded.org
Sat Nov 24 15:15:06 UTC 2012


Module: openembedded-core.git
Branch: master-next
Commit: e49cb6f353c38170a686f3d46cad78f735d566ab
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=e49cb6f353c38170a686f3d46cad78f735d566ab

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Mon Nov 19 22:17:50 2012 +0000

base.bbclass: Drop P and PN from FILESPATH

In the interests of simplifying things, remove P and PN from FILESPATH,
instead relying on the BP and BPN versions which work in 99% of cases.

In any problematic case such as a -native only recipe, either the patch
directory can be renamed or the recipe can set FILESPATH specifically.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/base.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 6037f90..0ee9d2e 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -80,7 +80,7 @@ BASEDEPENDS = "${@base_dep_prepend(d)}"
 
 DEPENDS_prepend="${BASEDEPENDS} "
 
-FILESPATH = "${@base_set_filespath([ "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files"], d)}"
+FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files"], d)}"
 # THISDIR only works properly with imediate expansion as it has to run
 # in the context of the location its used (:=)
 THISDIR = "${@os.path.dirname(d.getVar('FILE', True))}"





More information about the Openembedded-commits mailing list