diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-07 13:32:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-08 13:59:59 +0100 |
commit | 4db0d5f563ea7673c5e25fc76fefc268c0b68449 (patch) | |
tree | c8613303eaba4d8bb70ad4ee52b710033728f29b /meta | |
parent | 38ef912202ebf2a79de7b62e53276559664cb53d (diff) | |
download | ast2050-yocto-poky-4db0d5f563ea7673c5e25fc76fefc268c0b68449.zip ast2050-yocto-poky-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.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 0018a62..ea75918 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1847,7 +1847,7 @@ python package_depchains() { # Since bitbake can't determine which variables are accessed during package # iteration, we need to list them here: -PACKAGEVARS = "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" +PACKAGEVARS = "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" def gen_packagevar(d): ret = [] |