1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #991 from Kijewski/fix-buildtest-newlines

Make: fix linebreaks in buildtest
This commit is contained in:
Martine Lenders 2014-04-11 07:10:27 +02:00
commit 5904c97113

View File

@ -163,10 +163,10 @@ debug:
buildtest:
@if [ -z "$${JENKINS_URL}" ] && tput colors 2>&1 > /dev/null; then \
GREEN='\033[1;32m'; RED='\033[1;31m'; RESET='\033[0m'; \
ECHO='echo -e'; \
ECHO='/bin/echo -e'; \
else \
GREEN=''; RED=''; RESET=''; \
ECHO='echo'; \
ECHO='/bin/echo'; \
fi; \
\
if [ -z "$(BOARD_WHITELIST)" ]; then \