summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.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-07 14:32:42 +0000
commit5a2b075fa9884d507bab547f3434ee5229a3d887 (patch)
treed54bfac3fe6810eb1c6aec87bb7dcdd0a7df3cab /meta/conf/bitbake.conf
parent9728e5b50c6696ab04daf276d7db8e5297dfeb3c (diff)
downloadpoky-5a2b075fa9884d507bab547f3434ee5229a3d887.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: 74fb6539dd06acb0dd6a9af4809152975e8473e6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.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 62cdd9aa9c..a1f0f624e9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -676,7 +676,7 @@ export PYTHONHASHSEED = "0"
676export PERL_HASH_SEED = "0" 676export PERL_HASH_SEED = "0"
677export SOURCE_DATE_EPOCH ?= "${@get_source_date_epoch_value(d)}" 677export SOURCE_DATE_EPOCH ?= "${@get_source_date_epoch_value(d)}"
678# A SOURCE_DATE_EPOCH of '0' might be misinterpreted as no SDE 678# A SOURCE_DATE_EPOCH of '0' might be misinterpreted as no SDE
679export SOURCE_DATE_EPOCH_FALLBACK ??= "1302044400" 679SOURCE_DATE_EPOCH_FALLBACK ??= "1302044400"
680REPRODUCIBLE_TIMESTAMP_ROOTFS ??= "1520598896" 680REPRODUCIBLE_TIMESTAMP_ROOTFS ??= "1520598896"
681 681
682################################################################## 682##################################################################