Author: hailfinger Date: 2008-01-10 22:13:19 +0100 (Thu, 10 Jan 2008) New Revision: 552
Modified: LinuxBIOSv3/arch/x86/Makefile Log: 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 rmh@aybabtu.com Acked-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net
Modified: LinuxBIOSv3/arch/x86/Makefile =================================================================== --- LinuxBIOSv3/arch/x86/Makefile 2008-01-09 23:09:23 UTC (rev 551) +++ LinuxBIOSv3/arch/x86/Makefile 2008-01-10 21:13:19 UTC (rev 552) @@ -135,7 +135,7 @@ $(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.