aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRitu Sood <ritu.sood@intel.com>2019-03-20 17:12:43 -0700
committerRitu Sood <ritu.sood@intel.com>2019-03-20 17:12:43 -0700
commit722b308e2a91fc7ed16bdb33146add51da7212b4 (patch)
treef7fe22c8191de800d56195a8f4a0fa54183f8922 /src
parent58f8933d2df7c2601bbdff7bfec1652b48946138 (diff)
Remove -a build flag
-a forces rebuilding of packages that are already up-to-date. This is slowing down builds to several minutes Change-Id: Iac082538b91e60b23dc1a2f3b1f1597e078d7a4a Signed-off-by: Ritu Sood <ritu.sood@intel.com> Issue-ID: MULTICLOUD-301
Diffstat (limited to 'src')
-rw-r--r--src/k8splugin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile
index afb83d66..51b1f1a9 100644
--- a/src/k8splugin/Makefile
+++ b/src/k8splugin/Makefile
@@ -17,7 +17,7 @@ export GO111MODULE=on
all: clean plugins
CGO_ENABLED=1 GOOS=linux GOARCH=amd64
- @go build -a -tags netgo -o ./k8plugin ./cmd/main.go
+ @go build -tags netgo -o ./k8plugin ./cmd/main.go
# The following is done this way as each patch on CI runs build and each merge runs deploy. So for build we don't need to build binary and hence
# no need to create a static binary with additional flags. However, for generating binary, additional build flags are necessary. This if used with
@@ -43,7 +43,7 @@ format:
@go fmt ./...
plugins:
- @find plugins -maxdepth 1 -type d -not -path plugins -exec sh -c "ls {}/plugin.go | xargs go build -buildmode=plugin -a -tags netgo -o $(basename {}).so" \;
+ @find plugins -maxdepth 1 -type d -not -path plugins -exec sh -c "ls {}/plugin.go | xargs go build -buildmode=plugin -tags netgo -o $(basename {}).so" \;
clean:
@find . -name "*so" -delete