From b8712cb816fc0d0d7b6c15be6e06d9dc3d3164be Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 12 Nov 2006 02:56:35 +0000 Subject: [PATCH] tty detect fix SVN-Revision: 5510 --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 62a0338746..e5e1f6fd31 100644 --- a/Makefile +++ b/Makefile @@ -24,10 +24,7 @@ export TOPDIR=${shell pwd} ifeq ($(KBUILD_VERBOSE),99) MAKE:=3>/dev/null $(MAKE) endif -ifneq ($(shell tty -s <&3 || echo x),x) - IS_TTY=1 - export IS_TTY -endif +export IS_TTY=$(shell tty -s && echo 1 || echo 0) include $(TOPDIR)/include/verbose.mk -- 2.30.2