From a7d2bed457408987e99e6e82b98d42bfaaec8945 Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 12 Dec 2014 18:28:13 +0000 Subject: [PATCH] kernel.mk: Handle the x86_64 LINUX_KARCH case x64 is handled by the x86 architecture in Linux, add a case for it in LINUX_KARCH. Signed-off-by: Maxime Ripard git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43672 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- include/kernel.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel.mk b/include/kernel.mk index b905cb9e19..eeb0c3d2bd 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -72,7 +72,7 @@ else ifneq (,$(findstring $(ARCH), mipsel mips64 mips64el)) LINUX_KARCH := mips else ifneq (,$(findstring $(ARCH), sh2 sh3 sh4)) LINUX_KARCH := sh -else ifneq (,$(findstring $(ARCH), i386)) +else ifneq (,$(findstring $(ARCH), i386 x86_64)) LINUX_KARCH := x86 else LINUX_KARCH := $(ARCH) -- 2.11.0