Re: [PATCH skalibs] Make build reproducible

2019-08-19 Thread Laurent Bercot
Applied, thanks. I didn't bother before because a make build is inherently non-deterministic, unless the author manually defines a total order on all the prerequisites of a target. I suspect the implementation of GNU make to implicitly define such an order, but there's nothing of the sort in

[PATCH skalibs] Make build reproducible

2019-08-19 Thread Shengjing Zhu
Fix the undetermined object order when linking. See more https://reproducible-builds.org/docs/stable-inputs/ Signed-off-by: Shengjing Zhu --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0724394..80c158b 100644 --- a/Makefile +++