summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-07 13:32:28 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-12 13:17:21 +0000
commitae9e8e177f2923cf74e0c4d011eb4eb09e36a26c (patch)
treeb07b1f730ddd6ffcfa2f21f252aa7ffd2ff637a4
parent4a73e4b4632b8d924713d2796a4ba1fee352f876 (diff)
downloadpoky-ae9e8e177f2923cf74e0c4d011eb4eb09e36a26c.tar.gz
package.bbclass: Add CONFFILES to list of package specific variables
Changes to CONFFILES should change the sstate checksum. To make that happen, it needs to be listed in the list of package specific variables, therefore add it. (From OE-Core rev: 9db71fa03b9d5f5307b2d09e7aa89f46f622aa09) (From OE-Core rev: 874f7953d96367e4b2310b73a787ceb853891a64) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 5b1e902c07..9e64e05af3 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1800,7 +1800,7 @@ python package_depchains() {
1800 1800
1801# Since bitbake can't determine which variables are accessed during package 1801# Since bitbake can't determine which variables are accessed during package
1802# iteration, we need to list them here: 1802# iteration, we need to list them here:
1803PACKAGEVARS = "FILES RDEPENDS RRECOMMENDS SUMMARY DESCRIPTION RSUGGESTS RPROVIDES RCONFLICTS PKG ALLOW_EMPTY pkg_postinst pkg_postrm INITSCRIPT_NAME INITSCRIPT_PARAMS DEBIAN_NOAUTONAME ALTERNATIVE PKGE PKGV PKGR USERADD_PARAM GROUPADD_PARAM" 1803PACKAGEVARS = "FILES RDEPENDS RRECOMMENDS SUMMARY DESCRIPTION RSUGGESTS RPROVIDES RCONFLICTS PKG ALLOW_EMPTY pkg_postinst pkg_postrm INITSCRIPT_NAME INITSCRIPT_PARAMS DEBIAN_NOAUTONAME ALTERNATIVE PKGE PKGV PKGR USERADD_PARAM GROUPADD_PARAM CONFFILES"
1804 1804
1805def gen_packagevar(d): 1805def gen_packagevar(d):
1806 ret = [] 1806 ret = []