From de8dc930f2e80dd50e2c9a77ebd6411981c3b2a1 Mon Sep 17 00:00:00 2001 From: gouchi Date: Sun, 24 Nov 2019 01:32:20 +0100 Subject: [PATCH] Libretro: Fix linux arm build (#711) --- Libretro/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libretro/Makefile b/Libretro/Makefile index 21fbbda0..c1f44890 100644 --- a/Libretro/Makefile +++ b/Libretro/Makefile @@ -64,7 +64,7 @@ ifeq ($(STATIC_LINKING), 1) EXT := a endif -ifeq ($(platform), unix) +ifneq (,$(findstring unix,$(platform))) EXT ?= so TARGET := $(TARGET_NAME)_libretro.$(EXT) fpic := -fPIC -pthread