mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
When doing reproducible builds inherit podfix to remove the possibility of differing Perl versions causing manpages to change. (From OE-Core rev: 5dc43edab4787906f2c9f51e51bf78d1dc966286) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
251 B
Plaintext
12 lines
251 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"
|
|
|
|
inherit podfix
|