If the ARCH used does not exist print out the following: Makefile:203: *** "ERROR: ARCH (i386) does not exist (for i386 and x86_64 use ARCH=x86)". Stop. This check is highly relevant now i386 and x86_64 are gone.
Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]> Cc: Christoph Hellwig <[EMAIL PROTECTED]> --- Makefile | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index afeeef8..902082b 100644 --- a/Makefile +++ b/Makefile @@ -198,6 +198,11 @@ CROSS_COMPILE ?= UTS_MACHINE := $(ARCH) SRCARCH := $(ARCH) +# Sanity check the specified ARCH +ifeq ($(wildcard $(srctree)/arch/$(ARCH)/Kconfig),) + $(error "ERROR: ARCH ($(ARCH)) does not exist (for i386 and x86_64 use ARCH=x86)") +endif + KCONFIG_CONFIG ?= .config # SHELL used by kbuild -- 1.5.3.4.1157.g0e74-dirty - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/