aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-01-14 18:24:22 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-01-14 18:24:22 +0100
commitebacf5cb4d1af4fc8f7b7833ecd72836e53037cf (patch)
tree5411a149960fe3f22cb2c25809811f6f1eaf327e
parente9b3467100d75548220cc6e71e005a97732d66e7 (diff)
Makefile: fix double $(GO) $(GO)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a0bfd3635..77063bb38 100644
--- a/Makefile
+++ b/Makefile
@@ -312,8 +312,8 @@ else
endif
test_race:
- env CGO_ENABLED=1 $(GO) $(GO) test -race; if test $$? -ne 2; then \
- env CGO_ENABLED=1 $(GO) test -short -race -bench=.* -benchtime=.2s ./... ;\
+ env CGO_ENABLED=1 $(GO) test -race; if test $$? -ne 2; then \
+ env CGO_ENABLED=1 $(GO) test -race -short -bench=.* -benchtime=.2s ./... ;\
fi
clean: