summaryrefslogtreecommitdiffstats
path: root/meta
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-04-08 13:59:59 +0100
commit4db0d5f563ea7673c5e25fc76fefc268c0b68449 (patch)
treec8613303eaba4d8bb70ad4ee52b710033728f29b /meta
parent38ef912202ebf2a79de7b62e53276559664cb53d (diff)
downloadpoky-4db0d5f563ea7673c5e25fc76fefc268c0b68449.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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 0018a62f3e..ea7591855e 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1847,7 +1847,7 @@ python package_depchains() {
1847 1847
1848# Since bitbake can't determine which variables are accessed during package 1848# Since bitbake can't determine which variables are accessed during package
1849# iteration, we need to list them here: 1849# iteration, we need to list them here:
1850PACKAGEVARS = "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" 1850PACKAGEVARS = "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"
1851 1851
1852def gen_packagevar(d): 1852def gen_packagevar(d):
1853 ret = [] 1853 ret = []