tty detect fix

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5510 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Felix Fietkau 2006-11-12 02:56:35 +00:00
parent 309572ec08
commit 52f3a41d91

View File

@ -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