mirror of https://github.com/stella-emu/stella.git
Fix for missing 'CC' compiler in configure script (fixes #856).
This commit is contained in:
parent
181e02e3a5
commit
1f8666bde5
|
@ -895,6 +895,12 @@ if test "$_build_release" = no ; then
|
||||||
_build_release=
|
_build_release=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Workaround until we deal with autodetection of C compiler properly
|
||||||
|
# Or we remove C files from Stella entirely, by making them C++
|
||||||
|
if test -z "$CC"; then
|
||||||
|
CC=cc
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Creating config.mak"
|
echo "Creating config.mak"
|
||||||
cat > config.mak << EOF
|
cat > config.mak << EOF
|
||||||
# -------- Generated by configure -----------
|
# -------- Generated by configure -----------
|
||||||
|
|
Loading…
Reference in New Issue