From ee7668d654b9916f26846cb336569c3476589dcc Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Sun, 9 Nov 2008 01:03:57 +0000 Subject: [PATCH] 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 Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/coreboot-v3@989 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- util/x86emu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/x86emu/Makefile b/util/x86emu/Makefile index 5f685da28a..2296b12453 100644 --- a/util/x86emu/Makefile +++ b/util/x86emu/Makefile @@ -23,7 +23,7 @@ BIOSEMU_SRC = biosemu.c pcbios/pcibios.c 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)