Patrick Georgi ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/190
-gerrit commit e6e5a03bca182471fa00d937c3235ac00ef0234e Author: Patrick Georgi <[email protected]> Date: Thu Sep 1 09:16:37 2011 +0200 More compatible use of mktemp Change-Id: I961a7ddcd39657c9463806d7b82757eff0a4ac57 Signed-off-by: Patrick Georgi <[email protected]> --- util/xcompile/xcompile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index 5e9ce83..7c1adf3 100644 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -35,7 +35,7 @@ for make in make gmake gnumake; do done GCCPREFIX=invalid -TMPFILE=`mktemp /tmp/temp.XXXX 2>/dev/null || echo /tmp/temp.78gOIUGz` +TMPFILE=`mktemp /tmp/temp.XXXXXX 2>/dev/null || echo /tmp/temp.78gOIUGz` touch $TMPFILE # This should be a loop over all supported architectures -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

