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 <[EMAIL PROTECTED]>
Acked-by: Ronald G. Minnich <[EMAIL PROTECTED]>


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)


--
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to