diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -206,7 +206,11 @@ ifeq ($(ARCH),x86_64) | |||
206 | endif | 206 | endif |
207 | 207 | ||
208 | # Where to locate arch specific headers | 208 | # Where to locate arch specific headers |
209 | hdr-arch := $(SRCARCH) | 209 | ifeq ($(ARCH),sparc64) |
210 | hdr-arch := sparc | ||
211 | else | ||
212 | hdr-arch := $(SRCARCH) | ||
213 | endif | ||
210 | 214 | ||
211 | KCONFIG_CONFIG ?= .config | 215 | KCONFIG_CONFIG ?= .config |
212 | 216 | ||