diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2007-11-12 14:14:19 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-11-12 15:02:20 -0500 |
commit | d746d647f31bd3664f4a23985b78654129ffc1db (patch) | |
tree | 6caa461f889220551adb460e2f74b00d51c0e076 /Makefile | |
parent | 2a113281f5cd2febbab21a93c8943f8d3eece4d3 (diff) |
x86: do not use $(ARCH) when not needed
For x86 ARCH may say i386 or x86_64 and soon x86.
Rely on CONFIG_X64_32 to select between 32/64 or just
hardcode the value as appropriate.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -197,8 +197,13 @@ CROSS_COMPILE ?= | |||
197 | UTS_MACHINE := $(ARCH) | 197 | UTS_MACHINE := $(ARCH) |
198 | SRCARCH := $(ARCH) | 198 | SRCARCH := $(ARCH) |
199 | 199 | ||
200 | # for i386 and x86_64 we use SRCARCH equal to x86 | 200 | # Additional ARCH settings for x86 |
201 | SRCARCH := $(if $(filter x86_64 i386,$(SRCARCH)),x86,$(SRCARCH)) | 201 | ifeq ($(ARCH),i386) |
202 | SRCARCH := x86 | ||
203 | endif | ||
204 | ifeq ($(ARCH),x86_64) | ||
205 | SRCARCH := x86 | ||
206 | endif | ||
202 | 207 | ||
203 | KCONFIG_CONFIG ?= .config | 208 | KCONFIG_CONFIG ?= .config |
204 | 209 | ||