[coreboot] r1062 - coreboot-v3/arch/x86

svn at coreboot.org svn at coreboot.org
Wed Dec 3 03:14:30 CET 2008


Author: hailfinger
Date: 2008-12-03 03:14:30 +0100 (Wed, 03 Dec 2008)
New Revision: 1062

Modified:
   coreboot-v3/arch/x86/Makefile
Log:
Fix a missing dependency on arch/x86/stage0_common.S (that's an included
file from all arch/x86/*/stage0.S).

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>


Modified: coreboot-v3/arch/x86/Makefile
===================================================================
--- coreboot-v3/arch/x86/Makefile	2008-11-27 01:01:16 UTC (rev 1061)
+++ coreboot-v3/arch/x86/Makefile	2008-12-03 02:14:30 UTC (rev 1062)
@@ -259,7 +259,7 @@
 	$(Q)$(CC) $(INITCFLAGS) -c $< -o $@
 	
 # Building asm stub.
-$(obj)/arch/x86/%/stage0.o: $(src)/arch/x86/%/stage0.S
+$(obj)/arch/x86/%/stage0.o: $(src)/arch/x86/%/stage0.S $(src)/arch/x86/stage0_common.S
 	$(Q)mkdir -p $(dir $@)
 	$(Q)printf "  CC      $(subst $(shell pwd)/,,$(@))\n"
 	$(Q)$(CC) -E $(COREBOOTINCLUDE) $< \





More information about the coreboot mailing list