summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/os-release
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-25 17:58:55 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-30 12:36:02 +0100
commitfc209e99eca97c4cc01b08eaaf7ba3ce8ac4e894 (patch)
tree07c3f131e7ef9a68849140c64abd33cd643661f3 /meta/recipes-core/os-release
parent4e02e5b9fe84c7b64bb431457aa1f03e11478b21 (diff)
downloadpoky-fc209e99eca97c4cc01b08eaaf7ba3ce8ac4e894.tar.gz
os-release: Exclude DATETIME from sstate signature
I'm torn over this, I can see someone wanting this to vary in each build. What pushed me to believe its incorrect in its current form is that it changes for every MACHINE build, making a complete mess if you try and generate package feeds using it. The alternative would be to give up on allarch in this case and make it MACHINE specific which at least would then be more consistent when the package makes it to a package feed. If someone wants to do that, the can propose another patch but this change at least make package feed usage 'sane' again and avoids the perpetual rebuilds. Incidentally, its worth noting that changes in source metadata revision used for the build and included in this recipe would still trigger rebuilds which is likely the common use case people actually care about. (From OE-Core rev: 46de6f6eb9c4387298fafb48fb9c36abc3ff48a4) (From OE-Core rev: 9585cffea33895c3ceea30f45325d2eca6dcf1c2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/os-release')
-rw-r--r--meta/recipes-core/os-release/os-release.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/os-release/os-release.bb b/meta/recipes-core/os-release/os-release.bb
index 87fea6f04d..10a4570492 100644
--- a/meta/recipes-core/os-release/os-release.bb
+++ b/meta/recipes-core/os-release/os-release.bb
@@ -21,6 +21,7 @@ VERSION = "${DISTRO_VERSION}${@' (%s)' % DISTRO_CODENAME if 'DISTRO_CODENAME' in
21VERSION_ID = "${DISTRO_VERSION}" 21VERSION_ID = "${DISTRO_VERSION}"
22PRETTY_NAME = "${DISTRO_NAME} ${VERSION}" 22PRETTY_NAME = "${DISTRO_NAME} ${VERSION}"
23BUILD_ID ?= "${DATETIME}" 23BUILD_ID ?= "${DATETIME}"
24BUILD_ID[vardepsexclude] = "DATETIME"
24 25
25python do_compile () { 26python do_compile () {
26 with open(d.expand('${B}/os-release'), 'w') as f: 27 with open(d.expand('${B}/os-release'), 'w') as f: