20090310-1-paths:
authorPatrick Georgi <patrick.georgi@coresystems.de>
Wed, 11 Mar 2009 15:35:22 +0000 (15:35 +0000)
committerStefan Reinauer <stepan@openbios.org>
Wed, 11 Mar 2009 15:35:22 +0000 (15:35 +0000)
The rules changed in this patch originally wanted to write c_start.o
into the source tree. That triggered a bug in my other work, and is
generally not what we want.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3994 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/config/Config.lb

index 7ef98446216941d00a7d8415b08ddb294693cbce..6abef504e4814ab50eef0e543c5027a7a9eb27c5 100644 (file)
@@ -45,7 +45,7 @@ end
 
 
 makerule coreboot_ram.o
-       depends "$(TOP)/src/arch/$(ARCH)/lib/c_start.o $(DRIVER) coreboot.a $(LIBGCC_FILE_NAME)" 
+       depends "src/arch/$(ARCH)/lib/c_start.o $(DRIVER) coreboot.a $(LIBGCC_FILE_NAME)" 
        action  "$(CC) $(DISTRO_LFLAGS) -nostdlib -r -o $@ $^"
 end
 
@@ -88,7 +88,7 @@ if CONFIG_AP_CODE_IN_CAR
        end
 
        makerule coreboot_apc.o
-               depends "$(TOP)/src/arch/$(ARCH)/lib/c_start.o coreboot_apc.a $(LIBGCC_FILE_NAME)"
+               depends "src/arch/$(ARCH)/lib/c_start.o coreboot_apc.a $(LIBGCC_FILE_NAME)"
                action  "$(CC) $(DISTRO_LFLAGS) -nostdlib -r -o $@ $^"
        end