From 9f237cda52c87f11ff1333f7c3cdf5b779c08faa Mon Sep 17 00:00:00 2001 From: Jan Wedekind Date: Mon, 9 Oct 2017 11:01:11 +0100 Subject: [PATCH] Do not specify sdl2-config location --- etc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/Makefile b/etc/Makefile index 499c69e..b581b93 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,6 +1,6 @@ -OPTS= $(shell /usr/local/bin/sdl2-config --cflags) -I. -I.. -Wall -LIBS= $(shell /usr/local/bin/sdl2-config --libs) +OPTS= $(shell sdl2-config --cflags) -I. -I.. -Wall +LIBS= $(shell sdl2-config --libs) ifeq ($(shell uname), Linux) LIBS += -lGL -lGLEW