[coreboot] [PATCH] Build fixes for buildrom

Mart Raudsepp mart.raudsepp at artecdesign.ee
Mon Apr 6 16:38:19 CEST 2009


Ühel kenal päeval, E, 2009-04-06 kell 14:17, kirjutas Bernie Innocenti:
> Build fixes for buildrom
> 
>  - switch from "git-foo" to "git foo" for git 1.6
>  - add a fallback for when tempfile is missing
> 
> Signed-off-by: Bernie Innocenti <bernie at codewiz.org>

> Index: bin/show-instructions.sh
> ===================================================================
> --- bin/show-instructions.sh	(revision 261)
> +++ bin/show-instructions.sh	(working copy)
> @@ -1,6 +1,6 @@
>  #!/bin/sh
>  
> -tmp=`tempfile`
> +tmp=`tempfile 2>/dev/null | echo /tmp/show-instructions.$$`

This change makes it always use /tmp/show-instructions.PID
I believe you wanted || instead of a pipe there.


Regards,
Mart Raudsepp





More information about the coreboot mailing list