Re: [OE-core] [PATCH] classes/reproducible_build: Avoid dereferencing symlinks

2018-08-08 Thread Paulo Neves
minor nitpick. Your patch changed the whitespace indentation ;) On Mon, Aug 6, 2018 at 5:25 PM, Joshua Watt wrote: > Using os.path.getmtime() will dereference symbolic links in an attempt > to get the last modified time. This can cause errors if the target > doesn't exist, or worse map to some ab

[OE-core] [PATCH] classes/reproducible_build: Avoid dereferencing symlinks

2018-08-06 Thread Joshua Watt
Using os.path.getmtime() will dereference symbolic links in an attempt to get the last modified time. This can cause errors if the target doesn't exist, or worse map to some absolute build host path which would make a build not reproducible. Signed-off-by: Joshua Watt --- meta/classes/reproducib