summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-03 17:37:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-24 15:30:01 +0000
commit027a8802ac77760f2b9bdd2edc13b17312cdeeac (patch)
tree93c8496661bbd45caa6f5da08d5f257bd242f779 /meta/conf
parentf9679ac9f89d371c1934ccb319eb3c3eae33d61d (diff)
downloadpoky-027a8802ac77760f2b9bdd2edc13b17312cdeeac.tar.gz
bitbake.conf: Drop export of SOURCE_DATE_EPOCH_FALLBACK
Whilst SDE definitely needs to be exported, the fallback does not as it is only used in our python code via the datastore. It was introduced as an export in 9a1dde74e794362399193dc3f81c9685a83d0776 but even then it doesn't look like it needed to be, likely just a copy and paste mistake. Drop the export. (From OE-Core rev: 7a1555a0f4223f8ca4485b410de91098301d5896) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit 74fb6539dd06acb0dd6a9af4809152975e8473e6) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 516a30c963..82b115e3a2 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -671,7 +671,7 @@ export PYTHONHASHSEED = "0"
671export PERL_HASH_SEED = "0" 671export PERL_HASH_SEED = "0"
672export SOURCE_DATE_EPOCH ?= "${@get_source_date_epoch_value(d)}" 672export SOURCE_DATE_EPOCH ?= "${@get_source_date_epoch_value(d)}"
673# A SOURCE_DATE_EPOCH of '0' might be misinterpreted as no SDE 673# A SOURCE_DATE_EPOCH of '0' might be misinterpreted as no SDE
674export SOURCE_DATE_EPOCH_FALLBACK ??= "1302044400" 674SOURCE_DATE_EPOCH_FALLBACK ??= "1302044400"
675REPRODUCIBLE_TIMESTAMP_ROOTFS ??= "1520598896" 675REPRODUCIBLE_TIMESTAMP_ROOTFS ??= "1520598896"
676 676
677################################################################## 677##################################################################