From bd1ddb7b5360b232361e1e4ede83f36ba4829b87 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 22 Oct 2011 15:10:17 +0800 Subject: [PATCH] Kernel/Makefile - Fixed error when starting a new build --- Kernel/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/Makefile b/Kernel/Makefile index bb76c131..0b79233b 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -10,8 +10,8 @@ -include Makefile.BuildNum.$(ARCH) -ifeq ($(BUILDNUM),) -BUILDNUM = 0 +ifeq ($(BUILD_NUM),) +BUILD_NUM = 0 endif KERNEL_VERSION = 0.5 -- 2.20.1