From 32e20ab859ad88c06fc540c8a6459caf2e33e7df Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Sun, 18 Dec 2016 13:11:59 +0100 Subject: [PATCH] Fixed condition for helper file The check for including arm_helper or neon_helper was not correct in the Makefile, fixed. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f7e71d1b..f40e4637 100644 --- a/Makefile +++ b/Makefile @@ -198,10 +198,10 @@ OBJS += src/od-rasp/rasp_gfx.o OBJS += src/od-pandora/gui/sdltruetypefont.o OBJS += src/od-pandora/picasso96.o -ifdef USE_ARMNEON - OBJS += src/od-pandora/neon_helper.o -else +ifeq ($(PLATFORM),rpi1) OBJS += src/od-pandora/arm_helper.o +else + OBJS += src/od-pandora/neon_helper.o endif OBJS += src/newcpu.o