From 60b1f297837b17d66c9c0cf5e7b30713ea752d8b Mon Sep 17 00:00:00 2001 From: Tomas S <8504482+wereii@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:29:09 +0100 Subject: [PATCH] Fix RPi make install (#2217) --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 6f111d3f2..5ee9343e1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -147,7 +147,7 @@ endif # RAYLIB_SRC_PATH adjustment for different platforms. # If using GNU make, we can get the full path to the top of the tree. Windows? BSD? # Required for ldconfig or other tools that do not perform path expansion. -ifeq ($(PLATFORM),PLATFORM_DESKTOP) +ifeq ($(PLATFORM), $(filter $(PLATFORM),PLATFORM_DESKTOP PLATFORM_RPI)) ifeq ($(PLATFORM_OS),LINUX) RAYLIB_PREFIX ?= .. RAYLIB_SRC_PATH = $(realpath $(RAYLIB_PREFIX))