From 19a4d3ca692e864a2ae6c8c496e7eb08cded612f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 13 Dec 2018 13:06:48 +1300 Subject: build: Workaround python3 hash order issues (for now) This works around python3 having a new hash seed each time it starts to allow a second "make" not to rebuild the world. This should probably be reverted once we find the hash that is causing the issue, but should reduce frustration for now. Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4290986a939..c13843d3a4b 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ PYTHON?=python3 WAF_BINARY=$(PYTHON) ./buildtools/bin/waf -WAF=WAF_MAKE=1 $(WAF_BINARY) +WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY) all: $(WAF) build -- cgit v1.2.1