From: Yoshinori Sato Fix build error when .config does not exist Signed-off-by: Yoshinori Sato Signed-off-by: Andrew Morton --- 25-akpm/arch/h8300/Makefile | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff -puN arch/h8300/Makefile~h8300-makefile-update arch/h8300/Makefile --- 25/arch/h8300/Makefile~h8300-makefile-update 2005-01-22 18:46:55.170595088 -0800 +++ 25-akpm/arch/h8300/Makefile 2005-01-22 18:46:55.173594632 -0800 @@ -7,9 +7,6 @@ # # (C) Copyright 2002,2003 Yoshinori Sato # -ifndef include-config --include $(TOPDIR)/.config -endif platform-$(CONFIG_CPU_H8300H) := h8300h platform-$(CONFIG_CPU_H8S) := h8s @@ -47,9 +44,11 @@ LIBGCC := $(shell $(CROSS-COMPILE)$(CC) head-y := arch/$(ARCH)/platform/$(platform-y)/$(board-y)/crt0_$(model-y).o core-y += arch/$(ARCH)/kernel/ \ - arch/$(ARCH)/mm/ \ - arch/$(ARCH)/platform/$(PLATFORM)/ \ + arch/$(ARCH)/mm/ +ifdef PLATFORM +core-y += arch/$(ARCH)/platform/$(PLATFORM)/ \ arch/$(ARCH)/platform/$(PLATFORM)/$(BOARD)/ +endif libs-y += arch/$(ARCH)/lib/ $(LIBGCC) _