Commit e858eb13 authored by Sean McGovern's avatar Sean McGovern Committed by Rémi Denis-Courmont

contrib/bootstrap: don't assume cc is GCC

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent d6b9b0cb
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment