diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-03 15:29:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-01-03 15:29:37 +0000 |
commit | 308a1a27f4e0ca3692e3dbd970ae28a8e5289b37 (patch) | |
tree | ecec8d4bf5c991ca668fbe888a43ba09d42ebf19 /abuild.in | |
parent | a83cdde5108251844e127b7c21db8f63bf398ce2 (diff) | |
download | abuild-308a1a27f4e0ca3692e3dbd970ae28a8e5289b37.tar.gz abuild-308a1a27f4e0ca3692e3dbd970ae28a8e5289b37.tar.bz2 abuild-308a1a27f4e0ca3692e3dbd970ae28a8e5289b37.tar.xz abuild-308a1a27f4e0ca3692e3dbd970ae28a8e5289b37.zip |
abuild: only set xterm title if USE_COLOR is enabled
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ error() { set_xterm_title() { - if [ "$TERM" = xterm ]; then + if [ "$TERM" = xterm ] && [ -n "$USE_COLORS" ]; then printf "\033]0;$1\007" >&2 fi } |