From 3920cedd1cdd4702720773f0637b780f79be6158 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Wed, 27 Apr 2022 08:36:40 +1000 Subject: build: Update autosetup to v0.7.0-8-gcdbca9f Fixes #221 Reported-by: Antonio Borneo Signed-off-by: Steve Bennett --- autosetup/cc.tcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autosetup/cc.tcl b/autosetup/cc.tcl index 750ce92..910d6f3 100644 --- a/autosetup/cc.tcl +++ b/autosetup/cc.tcl @@ -264,11 +264,11 @@ proc cc-check-tools {args} { foreach tool $args { set TOOL [string toupper $tool] set exe [get-env $TOOL [get-define cross]$tool] - if {[find-executable {*}$exe]} { + if {[find-executable $exe]} { define $TOOL $exe continue } - if {[find-executable {*}$tool]} { + if {[find-executable $tool]} { msg-result "Warning: Failed to find $exe, falling back to $tool which may be incorrect" define $TOOL $tool continue -- cgit v1.1