diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2018-03-10 10:56:25 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-12 15:05:35 -0700 |
commit | 27f87bbc8395a2481ef808465a62d213a6b678ac (patch) | |
tree | be3a73306df39aef0ebf9731a839fba954de8a16 /meta/classes/kernel.bbclass | |
parent | 0a1a1daac661046b0bf287b63267d58e0ab03e8e (diff) | |
download | openembedded-core-27f87bbc8395a2481ef808465a62d213a6b678ac.tar.gz openembedded-core-27f87bbc8395a2481ef808465a62d213a6b678ac.tar.bz2 openembedded-core-27f87bbc8395a2481ef808465a62d213a6b678ac.zip |
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.
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.bbclass | 2 |
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 () { kernel_do_compile() { unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE - if [ "$BUILD_REPRODUCIBLE_BINARIES" = "1" ]; then + if [ "${BUILD_REPRODUCIBLE_BINARIES}" = "1" ]; then # kernel sources do not use do_unpack, so SOURCE_DATE_EPOCH may not # be set.... if [ "$SOURCE_DATE_EPOCH" = "0" ]; then |