Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93782eba authored by Mike Frysinger's avatar Mike Frysinger Committed by Helge Deller
Browse files

parisc: fix NATIVE set up in build



The ifeq operator does not accept globs, so this little bit of code will
never match (unless uname literally prints out "parsic*").  Rewrite to
use a pattern matching operator so that NATIVE is set to 1 on parisc.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent dde39798
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -24,9 +24,7 @@ CHECKFLAGS += -D__hppa__=1
LIBGCC		= $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)

MACHINE		:= $(shell uname -m)
ifeq ($(MACHINE),parisc*)
NATIVE		:= 1
endif
NATIVE		:= $(if $(filter parisc%,$(MACHINE)),1,0)

ifdef CONFIG_64BIT
UTS_MACHINE	:= parisc64