[OE-core] [PATCH] bitbake wrapper: Make sure grep runs without colorized output

Koen Kooi koen at dominion.thruhere.net
Wed Sep 21 10:31:06 UTC 2011


From: Tasslehoff Kjappfot <tasskjapp at gmail.com>

My .bashrc contained "export GREP_OPTIONS='--color=always'", and that caused the path in my pseudodone file to  be prefixed by "^[[m^[[K". Override by calling grep with --color=never.

Signed-off-by: Tasslehoff Kjappfot <tasskjapp at gmail.com>
Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>
---
 scripts/bitbake |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/bitbake b/scripts/bitbake
index 587428c..9330d71 100755
--- a/scripts/bitbake
+++ b/scripts/bitbake
@@ -65,7 +65,7 @@ if [ $buildpseudo = "1" ]; then
     if [ "$ret" != "0" ]; then
         exit 1
     fi
-    PSEUDOBINDIR=`bitbake -e | grep STAGING_BINDIR_NATIVE=\" | cut -d '=' -f2 | cut -d '"' -f2`
+    PSEUDOBINDIR=`bitbake -e | grep --color=never STAGING_BINDIR_NATIVE=\" | cut -d '=' -f2 | cut -d '"' -f2`
     ret=$?
     if [ "$ret" != "0" ]; then
         exit 1
-- 
1.6.6.1





More information about the Openembedded-core mailing list