[coreboot] r989 - coreboot-v3/util/x86emu

svn at coreboot.org svn at coreboot.org
Sun Nov 9 02:03:57 CET 2008


Author: hailfinger
Date: 2008-11-09 02:03:57 +0100 (Sun, 09 Nov 2008)
New Revision: 989

Modified:
   coreboot-v3/util/x86emu/Makefile
Log:
r965 broke x86emu compilation on all v3 targets.

Fix the issue. OBJ->SRC conversions are a bit tricky to get right.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>


Modified: coreboot-v3/util/x86emu/Makefile
===================================================================
--- coreboot-v3/util/x86emu/Makefile	2008-11-08 22:39:35 UTC (rev 988)
+++ coreboot-v3/util/x86emu/Makefile	2008-11-09 01:03:57 UTC (rev 989)
@@ -23,7 +23,7 @@
 VM86_SRC    = vm86.c vm86_gdt.c 
 
 ifeq ($(CONFIG_PCI_OPTION_ROM_RUN_X86EMU),y)
-LIBX86EMU_SRC=$(X86EMU_SRC) $(BIOSEMU_SRC)
+LIBX86EMU_SRC=$(patsubst %,x86emu/%,$(X86EMU_SRC)) $(BIOSEMU_SRC)
 endif
 
 ifeq ($(CONFIG_PCI_OPTION_ROM_RUN_VM86),y)





More information about the coreboot mailing list