[coreboot] [commit] r6602 - trunk

repository service svn at coreboot.org
Sat May 21 00:14:07 CEST 2011


Author: oxygene
Date: Sat May 21 00:14:07 2011
New Revision: 6602
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6602

Log:
Fix ccache behaviour if more than one ccache in PATH

Signed-off-by: Patrick Georgi <patrick.georgi at secunet.com>
Acked-by: Stefan Reinauer <stefan.reinauer at coreboot.org>

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Fri May 20 19:50:14 2011	(r6601)
+++ trunk/Makefile	Sat May 21 00:14:07 2011	(r6602)
@@ -109,7 +109,7 @@
 endif
 
 ifeq ($(CONFIG_CCACHE),y)
-CCACHE:=$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH))))
+CCACHE:=$(word 1,$(wildcard $(addsuffix /ccache,$(subst :, ,$(PATH)))))
 ifeq ($(CCACHE),)
 $(error ccache selected, but not found in PATH)
 endif




More information about the coreboot mailing list