Fix build error when .config does not exist Signed-off-by: Yoshinori Sato <[EMAIL PROTECTED]>
===== arch/h8300/Makefile 1.7 vs edited ===== --- 1.7/arch/h8300/Makefile 2004-05-15 11:00:17 +09:00 +++ edited/arch/h8300/Makefile 2005-01-20 23:09:33 +09:00 @@ -7,9 +7,6 @@ # # (C) Copyright 2002,2003 Yoshinori Sato <[EMAIL PROTECTED]> # -ifndef include-config --include $(TOPDIR)/.config -endif platform-$(CONFIG_CPU_H8300H) := h8300h platform-$(CONFIG_CPU_H8S) := h8s @@ -47,9 +44,11 @@ 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) -- Yoshinori Sato <[EMAIL PROTECTED]> - 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/