From 1da457889e91ae886c94440a72d8a5eec4aca565 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 14 Oct 2009 00:16:17 +0000 Subject: [PATCH] * Fix cross compilation --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8dda65a4..e946009b 100644 --- a/Makefile +++ b/Makefile @@ -441,7 +441,9 @@ ifeq ($(PLATFORM),mingw32) # Some MinGW installations define CC to cc, but don't actually provide cc, # so explicitly use gcc instead (which is the only option anyway) - CC=gcc + ifeq ($(shell which $(CC) > /dev/null; echo $$?),1) + CC=gcc + endif ifndef WINDRES WINDRES=windres