summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
authorJuro Bystricky <juro.bystricky@intel.com>2018-03-10 10:56:25 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-03-12 15:06:32 -0700
commit98e852983cf58e3004a88bcfb20430289f679140 (patch)
treeae9df8f01ee99b6bd4733b4c14ef594b167248be /meta/classes/kernel.bbclass
parent5350ee317740751f2417c1794dd39d3880347dbf (diff)
downloadpoky-98e852983cf58e3004a88bcfb20430289f679140.tar.gz
classes/recipes: Use expanded BUILD_REPRODUCIBLE_BINARIES value
Replace the occurences of BUILD_REPRODUCIBLE_BINARIES with expanded values ${BUILD_REPRODUCIBLE_BINARIES} so the variable does not need to be exported. (From OE-Core rev: 27f87bbc8395a2481ef808465a62d213a6b678ac) Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 9bc0e41251..dc0152f74a 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -279,7 +279,7 @@ get_cc_option () {
279 279
280kernel_do_compile() { 280kernel_do_compile() {
281 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE 281 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
282 if [ "$BUILD_REPRODUCIBLE_BINARIES" = "1" ]; then 282 if [ "${BUILD_REPRODUCIBLE_BINARIES}" = "1" ]; then
283 # kernel sources do not use do_unpack, so SOURCE_DATE_EPOCH may not 283 # kernel sources do not use do_unpack, so SOURCE_DATE_EPOCH may not
284 # be set.... 284 # be set....
285 if [ "$SOURCE_DATE_EPOCH" = "0" ]; then 285 if [ "$SOURCE_DATE_EPOCH" = "0" ]; then