From 9fffc68101ebc42e4161de1c2a4b132e17ef1b13 Mon Sep 17 00:00:00 2001
From: Mike Baker <mbm@openwrt.org>
Date: Tue, 30 Jan 2007 18:30:20 +0000
Subject: [PATCH] fix colors when compiling with some newer versions of bash

SVN-Revision: 6231
---
 include/verbose.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/verbose.mk b/include/verbose.mk
index b4242f212ac..99747ed3fd4 100644
--- a/include/verbose.mk
+++ b/include/verbose.mk
@@ -19,8 +19,8 @@ ifeq ("$(origin V)", "command line")
 endif
 
 ifeq ($(IS_TTY),1)
-  _Y:="\\33[33m"# yellow
-  _N:="\\33[m"#	normal
+  _Y:="\\033[33m" # yellow
+  _N:="\\033[m" #normal
 endif
 
 ifneq ($(KBUILD_VERBOSE),99)
-- 
GitLab