浏览代码

Remove extra parenthesis from Makefile

Cygwin had trouble running the tests
Fred Sundvik 8 年之前
父节点
当前提交
2acfd2ab2b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Makefile

+ 1 - 1
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