Author: stepan Date: 2008-02-09 14:06:45 +0100 (Sat, 09 Feb 2008) New Revision: 3100
Modified: trunk/coreboot-v2/src/config/Config.lb Log: add $(CROSS_COMPILE) to ar calls.
Signed-off-by: Marc Jones marc.jones@amd.com Acked-by: Peter Stuge peter@stuge.se
Modified: trunk/coreboot-v2/src/config/Config.lb =================================================================== --- trunk/coreboot-v2/src/config/Config.lb 2008-02-09 02:03:06 UTC (rev 3099) +++ trunk/coreboot-v2/src/config/Config.lb 2008-02-09 13:06:45 UTC (rev 3100) @@ -35,7 +35,7 @@ makerule coreboot.a depends "$(OBJECTS)" action "rm -f coreboot.a" - action "ar cr coreboot.a $(OBJECTS)" + action "$(CROSS_COMPILE)ar cr coreboot.a $(OBJECTS)" end
@@ -79,7 +79,7 @@ makerule coreboot_apc.a depends "apc_auto.o" action "rm -f coreboot_apc.a" - action "ar cr coreboot_apc.a apc_auto.o" + action "$(CROSS_COMPILE)ar cr coreboot_apc.a apc_auto.o" end
makerule coreboot_apc.o