You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
972 B
21 lines
972 B
Index: src/github.com/zyedidia/micro/Makefile |
|
--- src/github.com/zyedidia/micro/Makefile.orig 2020-10-10 17:10:42.882576000 +0200 |
|
+++ src/github.com/zyedidia/micro/Makefile 2020-10-10 17:11:17.605153000 +0200 |
|
@@ -2,7 +2,7 @@ |
|
|
|
VERSION = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \ |
|
go run tools/build-version.go) |
|
-HASH = $(shell git rev-parse --short HEAD) |
|
+HASH = 0000 |
|
DATE = $(shell GOOS=$(shell go env GOHOSTOS) GOARCH=$(shell go env GOHOSTARCH) \ |
|
go run tools/build-date.go) |
|
ADDITIONAL_GO_LINKER_FLAGS = $(shell GOOS=$(shell go env GOHOSTOS) \ |
|
@@ -15,7 +15,7 @@ |
|
|
|
# Builds micro after checking dependencies but without updating the runtime |
|
build: |
|
- go build -trimpath -ldflags "-s -w $(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro |
|
+ go build -v -trimpath -ldflags "$(GOVARS) $(ADDITIONAL_GO_LINKER_FLAGS)" ./cmd/micro |
|
|
|
build-dbg: |
|
go build -trimpath -ldflags "-s -w $(ADDITIONAL_GO_LINKER_FLAGS) $(DEBUGVAR)" ./cmd/micro
|
|
|