Remove extra parenthesis from Makefile

Cygwin had trouble running the tests
This commit is contained in:
Fred Sundvik 2016-12-29 14:56:01 +02:00
parent 273faa4d9c
commit 2acfd2ab2b
1 changed files with 1 additions and 1 deletions

View File

@ -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