Merge pull request #131 from smcv/tput

build: if tput fails, fall back to a reasonable text width
This commit is contained in:
Tim Angus 2015-07-22 08:37:24 +00:00
commit 26ed99e851
1 changed files with 1 additions and 1 deletions

View File

@ -1231,7 +1231,7 @@ release:
CLIENT_CFLAGS="$(CLIENT_CFLAGS)" SERVER_CFLAGS="$(SERVER_CFLAGS)" V=$(V)
ifneq ($(call bin_path, tput),)
TERM_COLUMNS=$(shell echo $$((`tput cols`-4)))
TERM_COLUMNS=$(shell if c=`tput cols`; then echo $$(($$c-4)); else echo 76; fi)
else
TERM_COLUMNS=76
endif