[skip ci] build: fix makefile targets using RELEASE_LDFLAGS

I forgot the `-ldflags` before setting the ldflags for the `install`
target.
This commit is contained in:
positiveblue
2022-10-17 09:46:09 -07:00
parent db42e63ab7
commit 85d88cd004

View File

@@ -126,8 +126,8 @@ build-itest-race:
install:
@$(call print, "Installing lnd and lncli.")
$(GOINSTALL) -tags="${tags}" $(RELEASE_LDFLAGS) $(PKG)/cmd/lnd
$(GOINSTALL) -tags="${tags}" $(RELEASE_LDFLAGS) $(PKG)/cmd/lncli
$(GOINSTALL) -tags="${tags}" -ldflags="$(RELEASE_LDFLAGS)" $(PKG)/cmd/lnd
$(GOINSTALL) -tags="${tags}" -ldflags="$(RELEASE_LDFLAGS)" $(PKG)/cmd/lncli
release-install:
@$(call print, "Installing release lnd and lncli.")