Browse Source

remove `-i` flag from GOFLAGS (#7778)

this flag is not needed for Go versions >=1.10 and creates problems
while building. see https://github.com/golang/go/issues/27285#issuecomment-424382413
tags/v1.21.12.1
Lars Kistner Lunny Xiao 6 years ago
parent
commit
714dcf9dad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -22,7 +22,7 @@ BINDATA := modules/{options,public,templates}/bindata.go
GOFILES := $(shell find . -name "*.go" -type f ! -path "./vendor/*" ! -path "*/bindata.go")
GOFMT ?= gofmt -s

GOFLAGS := -i -v
GOFLAGS := -v
EXTRA_GOFLAGS ?=

MAKE_VERSION := $(shell make -v | head -n 1)


Loading…
Cancel
Save