From dbb7a87fd84467166f27c80584bd5da0d785b8eb Mon Sep 17 00:00:00 2001
From: Dale Weiler <killfieldengine@gmail.com>
Date: Fri, 28 Dec 2012 09:05:14 +0000
Subject: [PATCH] Quoting of strings is forbid in some "make" implementations

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index fb429a1..1eefd22 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ ifneq ("$(MINGW)", "")
 else
 	#arm support for linux .. we need to allow unaligned accesses
 	#to memory otherwise we just segfault everywhere
-	ifneq (, $(findstring $(shell uname -m), "arm"))
+	ifneq (, $(findstring $(shell uname -m), arm))
 		CFLAGS += -munaligned-access
 	endif
 
-- 
2.39.5