Re: [OE-core] [PATCH 02/15] shadow: Backport last change reproducibility

2019-05-20 Thread Adrian Bunk
On Mon, May 20, 2019 at 06:43:04PM -0700, Armin Kuster wrote: >... > ++#ifdef HAVE_SECURE_GETENV > ++# define shadow_getenv(name) secure_getenv(name) > ++# else > ++# define shadow_getenv(name) getenv(name) > ++#endif >... If I understand the upstream discussion correctly, combined with the

[OE-core] [PATCH 02/15] shadow: Backport last change reproducibility

2019-05-20 Thread Armin Kuster
From: Alex Kiernan The third field in the /etc/shadow file (sp_lstchg) contains the date of the last password change expressed as the number of days since Jan 1, 1970. Backport the upstream changes to honour SOURCE_DATE_EPOCH for build reproducibility. Signed-off-by: Alex Kiernan