Reorder operands

This commit is contained in:
Dale Weiler 2012-12-28 09:06:04 +00:00
parent dbb7a87fd8
commit a7724bffaa

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 arm, $(shell uname -m)))
CFLAGS += -munaligned-access
endif