From: Mike Baker Date: Tue, 30 Jan 2007 18:30:20 +0000 (+0000) Subject: fix colors when compiling with some newer versions of bash X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=44dcffafccb5f56d00a8bcd3c3e43d3149839c8e;p=15.05%2Fopenwrt.git fix colors when compiling with some newer versions of bash git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6231 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/verbose.mk b/include/verbose.mk index b4242f212a..99747ed3fd 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)