aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/Makefile
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2019-03-21 01:43:54 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-21 01:43:54 +0000
commit7830bf49fbdcf1b726dc8dc3aca3638fb2195e66 (patch)
tree99a0401090dd7b21bd2803917e39177835f856c2 /src/k8splugin/Makefile
parent57ba15140f909434bd309a447c53eb6db4147f8f (diff)
parent722b308e2a91fc7ed16bdb33146add51da7212b4 (diff)
Merge "Remove -a build flag"
Diffstat (limited to 'src/k8splugin/Makefile')
-rw-r--r--src/k8splugin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile
index affdd5da..3bc7a0e6 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