From 297183382d37e15f220681bf31432cf219f3620e Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Sat, 11 Apr 2020 20:27:27 +0200 Subject: [PATCH] Win32 build: Fix typo SDLC2ONFIG => SDL2CONFIG --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index fc6adf02..35d7f405 100644 --- a/src/Makefile +++ b/src/Makefile @@ -124,7 +124,7 @@ ifdef COMSPEC PLATFORMFILES = bin/SDL.dll bin/SDL_image.dll endif ifeq ($(API),sdl2) - SDLC2ONFIG ?= $(shell which ../3rdparty/usr-win32/bin/sdl2-config || which sdl2-config) + SDL2CONFIG ?= $(shell which ../3rdparty/usr-win32/bin/sdl2-config || which sdl2-config) COPT += $(shell $(SDL2CONFIG) --cflags) $(TTFCOPT) $(JOYCOPT) LOPT += $(shell $(SDL2CONFIG) --libs) -lSDL2_image $(TTFLOPT) PLATFORMFILES = bin/SDL2.dll bin/SDL2_image.dll