From e858eb13be6ab571879b487a4b7d4222f7c26d1a Mon Sep 17 00:00:00 2001 From: Sean McGovern Date: Thu, 13 Mar 2014 13:50:25 -0400 Subject: [PATCH] contrib/bootstrap: don't assume cc is GCC MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: RĂ©mi Denis-Courmont --- contrib/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bootstrap b/contrib/bootstrap index 24e5779e87..26e1c2cc0b 100755 --- a/contrib/bootstrap +++ b/contrib/bootstrap @@ -98,7 +98,7 @@ done if test -z "$BUILD" then echo -n "Guessing build system... " - BUILD="`cc -dumpmachine`" + BUILD="`${CC:-cc} -dumpmachine`" if test -z "$BUILD"; then echo "FAIL!" exit 1 -- 2.11.4.GIT