aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2019-01-30 09:31:15 -0800
committerVictor Morales <victor.morales@intel.com>2019-01-30 09:31:15 -0800
commitd53b95760be6a17d5b14de550eb638f4a1c095d5 (patch)
treec85dffe7c62feb701dd75c48205e0baef39f60b5
parentecd18ef2315095601454332dd44a8dbc3329c394 (diff)
Add net tag to Makefile
The change that removes duplicate plugins make actions I0efecdcb70052b4c0d66102c56e0c715481cb34a didn't consider the flag for net module which it's needed during the runtime. Change-Id: I534c38d017fcc08294e8ca52cc936dea117914e3 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: MULTICLOUD-301
-rw-r--r--src/k8splugin/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/k8splugin/Makefile b/src/k8splugin/Makefile
index 635c9155..afb83d66 100644
--- a/src/k8splugin/Makefile
+++ b/src/k8splugin/Makefile
@@ -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 -o $(basename {}).so" \;
+ @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" \;
clean:
@find . -name "*so" -delete