From 6bd3433c0b5af2c51e22d4b7beedd046b27818d7 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 26 Jun 2006 21:21:42 +0000 Subject: For compatibility with revdep-rebuild, do not allow NOCOLOR=false to override the isatty() check. svn path=/main/trunk/; revision=3669 --- bin/emerge | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/emerge b/bin/emerge index f881858ca..f7292d1e2 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3437,7 +3437,11 @@ def emerge_main(): if settings.get("NOCOLOR","") in ("yes","true"): nocolor() elif (not sys.stdout.isatty()) and \ - settings.get("NOCOLOR","") not in ("no","false"): + settings.get("NOCOLOR","") != "no": + # revdep-rebuild exports NOCOLOR=false, so for now, don't allow + # NOCOLOR=false to override the isatty() check. This can be fixed + # in revdep-rebuild by using the --nocolor option when appropriate + # instead of exporting NOCOLOR. nocolor() tmpcmdline = sys.argv[1:] -- cgit v1.2.3-1-g7c22