From eeee7ff4356a70299a371445206b054662110320 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thibaut=20VAR=C3=88NE?= Date: Sat, 21 Jul 2018 18:38:37 +0200 Subject: [PATCH] phase1: correct PATH order for ccachestat MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit prefer host-wide first Signed-off-by: Thibaut VARÈNE --- phase1/master.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phase1/master.cfg b/phase1/master.cfg index 428f1f5..e58209d 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -1049,7 +1049,7 @@ for target in targets: name = "ccachestat", description = "Reporting ccache stats", command=["ccache", "-s"], - env = MakeEnv(overrides={ 'PATH': ["./staging_dir/host/bin", "${PATH}"] }), + env = MakeEnv(overrides={ 'PATH': ["${PATH}", "./staging_dir/host/bin"] }), want_stderr = False, haltOnFailure = False, flunkOnFailure = False, -- 2.30.2