diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-12 02:56:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-12 02:56:35 +0000 |
commit | 7e3c65163fa028248cabbe3479a7f3eaa2338985 (patch) | |
tree | 3188f043e57af52cf9727720d6152b9ec4d66e0b /Makefile | |
parent | 4134d3b68a6053d2923b175c51f38a771a295403 (diff) |
tty detect fix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5510 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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 |