mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 19:23:03 +01:00
This reverts commit 8380df6566.
Giving BUILDNAME a static default in reproducible_build_simple.bbclass
to have /etc/version be generated with that name lead to other users
of BUILDNAME no longer working as expected. E.g., buildstats.bcclass
would now write its information in a single directory, overwriting the
statistics for each build.
(From OE-Core rev: dcd1fbe153369634c73370cbe22e1dbdac080146)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
# Setup default environment for reproducible builds.
|
|
|
|
BUILD_REPRODUCIBLE_BINARIES = "1"
|
|
|
|
export PYTHONHASHSEED = "0"
|
|
export PERL_HASH_SEED = "0"
|
|
export SOURCE_DATE_EPOCH ??= "1520598896"
|
|
|
|
REPRODUCIBLE_TIMESTAMP_ROOTFS ??= "1520598896"
|