diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-03-11 15:35:22 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-03-11 15:35:22 +0000 |
commit | 25399346b3371bec44ba432d4c32f8f9c939f658 (patch) | |
tree | 94636ac1e7e8b6122b53cceb2679b5319bd22bb3 | |
parent | e1025d0f7fabc20e271c578c7c3283b30d152fe8 (diff) |
20090310-1-paths:
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
-rw-r--r-- | src/config/Config.lb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 7ef9844621..6abef504e4 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -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 |