From 8ed521d409a6b5b52fe1b266aac36a6859cdbc35 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Fri, 11 Oct 2019 01:22:04 +0200 Subject: [PATCH] Fixed Makefile contained an extra "else" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f91e34e..878b2f57 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ CPPFLAGS=-MD -MT $@ -MF $(@:%.o=%.d) # SDL2 with DispmanX targets (RPI only) # # Raspberry Pi 1/2/3/4 (SDL2, DispmanX) -else ifeq ($(PLATFORM),$(filter $(PLATFORM),rpi1 rpi2 rpi3 rpi4)) +ifeq ($(PLATFORM),$(filter $(PLATFORM),rpi1 rpi2 rpi3 rpi4)) USE_SDL2 = 1 CPPFLAGS += -DARMV6_ASSEMBLY -D_FILE_OFFSET_BITS=64 -DARMV6T2 -DUSE_SDL2 ${DISPMANX_FLAGS} LDFLAGS += ${DISPMANX_LDFLAGS}