Stefan Tauner (stefan.tauner@gmx.at) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2901
-gerrit
commit 3eefeb2098a094bab36300842afaf9dbf5d3c337 Author: Stefan Tauner stefan.tauner@gmx.at Date: Sun Oct 14 10:47:36 2012 +0200
Allow compilation without ccache
Change-Id: Ib10fb87635d8e3396a692d52ed3f0524a7860a9c Signed-off-by: Stefan Tauner stefan.tauner@gmx.at --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile index 8a77582..46d4657 100644 --- a/Makefile +++ b/Makefile @@ -50,13 +50,13 @@ release:
buildall: @printf "\nBuild SerialICE's QEmu\n" - @cd qemu-$(VERSION); ./configure --enable-serialice --target-list=i386-softmmu && $(MAKE) CC="ccache gcc" HOST_CC="ccache gcc" + @cd qemu-$(VERSION); ./configure --enable-serialice --target-list=i386-softmmu && $(MAKE) CC="$(CCACHE) gcc" HOST_CC="$(CCACHE) gcc" @printf "\nBuild SerialICE target stubs\n" @cd SerialICE; \ for board in `grep "^config *BOARD_" Kconfig |cut -d' ' -f2 |grep -v "^BOARD_INIT$$"`; do \ echo CONFIG_$$board=y > .config; \ - yes "" | $(MAKE) HOSTCC="ccache gcc" oldconfig && \ - $(MAKE) HOSTCC="ccache gcc" || exit 1; \ + yes "" | $(MAKE) HOSTCC="$(CCACHE) gcc" oldconfig && \ + $(MAKE) HOSTCC="$(CCACHE) gcc" || exit 1; \ mv build build-$$board; \ done