Quoting of strings is forbid in some "make" implementations

This commit is contained in:
Dale Weiler 2012-12-28 09:05:14 +00:00
parent cfa7119fdb
commit dbb7a87fd8

View file

@ -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