aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-05-04 12:50:58 -0400
committerHelge Deller <deller@gmx.de>2013-05-06 17:09:33 -0400
commit93782eba49e23c3f311a6b05a19ba15927ec4e8b (patch)
treef3370b825640b088dd6c815a551229cd49568e8f
parentdde397981cc14c2ee0c33d395691e63b1ee40fe5 (diff)
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: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--arch/parisc/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile
index 113e28206503..2f967cc6649e 100644
--- a/arch/parisc/Makefile
+++ b/arch/parisc/Makefile
@@ -24,9 +24,7 @@ CHECKFLAGS += -D__hppa__=1
24LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) 24LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
25 25
26MACHINE := $(shell uname -m) 26MACHINE := $(shell uname -m)
27ifeq ($(MACHINE),parisc*) 27NATIVE := $(if $(filter parisc%,$(MACHINE)),1,0)
28NATIVE := 1
29endif
30 28
31ifdef CONFIG_64BIT 29ifdef CONFIG_64BIT
32UTS_MACHINE := parisc64 30UTS_MACHINE := parisc64