[coreboot] New patch to review for coreboot: f33c9c4 buildgcc: Fix colors for dash

Patrick Georgi (patrick@georgi-clan.de) gerrit at coreboot.org
Mon Oct 31 12:16:53 CET 2011


Patrick Georgi (patrick at georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/361

-gerrit

commit f33c9c4950fcf081a2e081f27ae07de940c31c66
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Mon Oct 31 12:15:55 2011 +0100

    buildgcc: Fix colors for dash
    
    The previous fix broke buildgcc colors on MacOS X.
    This uses an encoding that should be more universal.
    
    Change-Id: I31ac6090ffb7c04784cf6566823652f229aebbb5
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 util/crossgcc/buildgcc |   23 +++++++++--------------
 1 files changed, 9 insertions(+), 14 deletions(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index a298dba..ee2a81b 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -23,11 +23,6 @@
 CROSSGCC_DATE="October 10th, 2011"
 CROSSGCC_VERSION="1.05"
 
-# To enable colors on dash(1)
-if [ -x /usr/bin/printf ]; then
-alias printf=/usr/bin/printf
-fi
-
 # default settings
 TARGETDIR=`pwd`/xgcc
 TARGETARCH=i386-elf
@@ -73,15 +68,15 @@ IASL_DIR="acpica-unix-${IASL_VERSION}"
 SAVETEMPS=0
 SKIPGDB=0
 
-red='\e[0;31m'
-RED='\e[1;31m'
-green='\e[0;32m'
-GREEN='\e[1;32m'
-blue='\e[0;34m'
-BLUE='\e[1;34m'
-cyan='\e[0;36m'
-CYAN='\e[1;36m'
-NC='\e[0m' # No Color
+red='\033[0;31m'
+RED='\033[1;31m'
+green='\033[0;32m'
+GREEN='\033[1;32m'
+blue='\033[0;34m'
+BLUE='\033[1;34m'
+cyan='\033[0;36m'
+CYAN='\033[1;36m'
+NC='\033[0m' # No Color
 
 searchgnu()
 {




More information about the coreboot mailing list