changeset 1168:3c4c270f51bc

Oops, these build system changes didn't fly. Often CC is set to "cc" by default, thus preventing default-override from working here.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Mar 2015 07:45:28 +0200
parents 848a88ce7a57
children 54e6516093ec
files Makefile.cross-mingw
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.cross-mingw	Thu Mar 05 07:37:35 2015 +0200
+++ b/Makefile.cross-mingw	Thu Mar 05 07:45:28 2015 +0200
@@ -11,9 +11,9 @@
 BINPATH ?= ./exe/
 OBJPATH ?= ./obj/win32/
 EXEEXT ?= .exe
-CC ?= $(MINGW_PREFIX)gcc
-AR ?= $(MINGW_PREFIX)ar
-RANLIB ?= $(MINGW_PREFIX)ranlib
+CC = $(MINGW_PREFIX)gcc
+AR = $(MINGW_PREFIX)ar
+RANLIB = $(MINGW_PREFIX)ranlib
 RM ?= rm
 
 SDL_CFLAGS ?= `$(MINGW_PATH)/bin/sdl-config --cflags`