Fix setting cflags/libs from sdl2-config

SDL_CFLAGS and SDL_LIBS assignment was "only if absent". However due
to previously assigning them to "pkg-config sdl2" values, the values
from sdl2-config were ignored.
This commit is contained in:
Zack Middleton 2017-10-02 02:02:08 -05:00
parent da07a6dbd9
commit e657dbd6b2
1 changed files with 2 additions and 2 deletions

View File

@ -301,8 +301,8 @@ endif
# Use sdl2-config if all else fails
ifeq ($(SDL_CFLAGS),)
ifneq ($(call bin_path, sdl2-config),)
SDL_CFLAGS ?= $(shell sdl2-config --cflags)
SDL_LIBS ?= $(shell sdl2-config --libs)
SDL_CFLAGS = $(shell sdl2-config --cflags)
SDL_LIBS = $(shell sdl2-config --libs)
endif
endif