Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13544
-gerrit
commit af4c7c3ea1e84cec2302c46a8df082bd4de7339e
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Mon Feb 1 12:02:29 2016 +0100
build system: avoid setting HOSTCC to " gcc"
Change-Id: I650b3a347edc2d575c5cbee2051f8ed7b4bd1645
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index a464345..2f44418 100644
--- a/Makefile
+++ b/Makefile
@@ -82,7 +82,7 @@ endif
# Disable implicit/built-in rules to make Makefile errors fail fast.
.SUFFIXES:
-HOSTCC := $(if $(shell type gcc 2>/dev/null), gcc, cc)
+HOSTCC := $(if $(shell type gcc 2>/dev/null),gcc,cc)
HOSTCXX = g++
HOSTCFLAGS := -g
HOSTCXXFLAGS := -g
the following patch was just integrated into master:
commit 68e3f6dd371ced6963802295e1e176dca5729d2f
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Fri Jan 29 23:02:56 2016 +0100
util/release: extend release script
Add the ability to release a given commit id, and normalize the tarballs
to use coreboot/1000 for owner and group, and the last commit date as
mtime for all files.
Change-Id: Ia349f429090fe9804f7f14c226812646e2f712be
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Reviewed-on: https://review.coreboot.org/13514
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See https://review.coreboot.org/13514 for details.
-gerrit