summaryrefslogtreecommitdiffstats
path: root/meta/classes/cpan-base.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2014-02-11 18:00:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-17 15:28:58 +0000
commit2d05f5763cd6032d710cf213c3725447bc8090f3 (patch)
treec7ddda338c09c0ae6a83975eaf5bde5adb2a4cff /meta/classes/cpan-base.bbclass
parentef15760e95943720ff88a938ab3b16728765bfe5 (diff)
downloadpoky-2d05f5763cd6032d710cf213c3725447bc8090f3.tar.gz
classes/cpan-base: fix signatures changing when perl is in sysroot
The previous fix for this same issue (OE-Core rev f31f6a70ec24e8c9515d69c5092e15effc5e7d4d) was not sufficient - we are setting the PERLVERSION variable from the get_perl_version function, but we're setting it using immediate expansion; thus the value is going into the signature and is still different between the time the recipe is cached on an empty TMPDIR and after perl is in the sysroot and we run bitbake -S perf. We could remove the immediate expansion, but that would mean the get_perl_version function would be called more often, so just set vardepvalue on the PERLVERSION variable to fix the problem instead. (From OE-Core rev: 262a62dff2d7f0902d717c734fcf5563e96a38bc) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/cpan-base.bbclass')
-rw-r--r--meta/classes/cpan-base.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/cpan-base.bbclass b/meta/classes/cpan-base.bbclass
index aa502d5faa..d9817ba6b6 100644
--- a/meta/classes/cpan-base.bbclass
+++ b/meta/classes/cpan-base.bbclass
@@ -44,6 +44,7 @@ def is_target(d):
44 44
45PERLLIBDIRS := "${@perl_get_libdirs(d)}" 45PERLLIBDIRS := "${@perl_get_libdirs(d)}"
46PERLVERSION := "${@get_perl_version(d)}" 46PERLVERSION := "${@get_perl_version(d)}"
47PERLVERSION[vardepvalue] = ""
47 48
48FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/*/.debug \ 49FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/*/.debug \
49 ${PERLLIBDIRS}/auto/*/*/.debug \ 50 ${PERLLIBDIRS}/auto/*/*/.debug \