make: remove obsolete check for jenkins

This commit is contained in:
Cenk Gündoğan 2016-04-21 10:57:19 +02:00
parent 8a85725cf9
commit 7383957a8d

View File

@ -58,8 +58,7 @@ COLOR_ECHO := /bin/echo
OS := $(shell uname)
ifeq (, ${JENKINS_URL})
ifeq (0, $(shell tput colors 2>&1 > /dev/null; echo $$?))
ifeq (0, $(shell tput colors 2>&1 > /dev/null; echo $$?))
COLOR_GREEN := \033[1;32m
COLOR_RED := \033[1;31m
COLOR_YELLOW := \033[1;33m
@ -71,7 +70,6 @@ ifeq (, ${JENKINS_URL})
else
COLOR_ECHO := /bin/echo -e
endif
endif
endif
ifeq ($(OS),Darwin)