diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-01-14 18:24:22 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-14 18:24:22 +0100 |
| commit | ebacf5cb4d1af4fc8f7b7833ecd72836e53037cf (patch) | |
| tree | 5411a149960fe3f22cb2c25809811f6f1eaf327e | |
| parent | e9b3467100d75548220cc6e71e005a97732d66e7 (diff) | |
Makefile: fix double $(GO) $(GO)
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |
