From 99335d3c82a95178c26eb904740a39b0b6b0921b Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Thu, 10 Jan 2008 21:13:19 +0000 Subject: [PATCH] This fixes a build race (make -j2): make: *** No rule to make target `LinuxBIOSv3/build/stage0-prefixed.o', needed by `LinuxBIOSv3/build/linuxbios.initram'. Stop. Signed-off-by: Robert Millan Acked-by: Carl-Daniel Hailfinger git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@552 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 0a058a0fee..f93c36bb0e 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -135,7 +135,7 @@ STAGE0_OBJ := $(patsubst %,$(obj)/lib/%,$(STAGE0_LIB_OBJ)) \ $(patsubst %,$(obj)/arch/x86/%,$(STAGE0_CAR_OBJ)) \ $(STAGE0_MAINBOARD_OBJ) $(STAGE0_CHIPSET_OBJ) -$(obj)/stage0.o $(obj)/stage0.init: $(STAGE0_OBJ) +$(obj)/stage0.o $(obj)/stage0.init $(obj)/stage0-prefixed.o: $(STAGE0_OBJ) $(Q)# We need to be careful. If stage0.o gets bigger than $(Q)# 0x4000 - 0x100, we will end up with a 4 gig file. $(Q)# I wonder if that behavior is on purpose.