From: Fred Sundvik Date: Thu, 29 Dec 2016 12:56:01 +0000 (+0200) Subject: Remove extra parenthesis from Makefile X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2acfd2ab2b445e4f7b40fed099a9c53ce88917e5;p=qmk_firmware.git Remove extra parenthesis from Makefile Cygwin had trouble running the tests --- diff --git a/Makefile b/Makefile index aa33c40f1..9e81b1d49 100644 --- a/Makefile +++ b/Makefile @@ -473,7 +473,7 @@ if [ $$error_occured -gt 0 ]; then echo $$error_occured > $(ERROR_FILE); fi; endef define RUN_TEST +error_occured=0;\ -$($(TEST)_COMMAND))\ +$($(TEST)_COMMAND)\ if [ $$error_occured -gt 0 ]; then echo $$error_occured > $(ERROR_FILE); fi; endef