From 771976a1951aedd953a11cabfbf6cfab15c8aba4 Mon Sep 17 00:00:00 2001 From: Kasey Rodgers Date: Thu, 9 Jun 2022 14:53:03 -0700 Subject: [PATCH] make plg target uses go build instead of go install --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 18f4b7df8..c6ec8518a 100644 --- a/Makefile +++ b/Makefile @@ -170,7 +170,7 @@ install: # Install the single-node PLG version of FeatureBase plg: - $(GO) install -tags='plg $(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/featurebase + $(GO) build -tags='plg $(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/featurebase install-bench: $(GO) install -tags='$(BUILD_TAGS)' -ldflags $(LDFLAGS) $(FLAGS) ./cmd/pilosa-bench