1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:37:46 +02:00

Makefile: fix typo

This commit is contained in:
Ansa89 2014-06-24 00:23:37 +02:00
parent c53600b550
commit 47b9648f85

View File

@ -43,16 +43,16 @@ else
CFLAGS +=
LDFLAGS +=
endif
UNAME_P = $(shell uname -p)
ifeq ($(UNAME_P), x86_64)
UNAME_M = $(shell uname -m)
ifeq ($(UNAME_M), x86_64)
CFLAGS +=
LDFLAGS +=
endif
ifneq ($(filter %86, $(UNAME_P)),)
ifneq ($(filter %86, $(UNAME_M)),)
CFLAGS +=
LDFLAGS +=
endif
ifneq ($(filter arm%, $(UNAME_P)),)
ifneq ($(filter arm%, $(UNAME_M)),)
CFLAGS +=
LDFLAGS +=
endif