diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-11-11 11:03:51 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-11-11 11:05:26 +0000 |
commit | aed97243eed1b2325aa938c2011b4ad51deb1e89 (patch) | |
tree | 9fcfe54a7425c43c86a0878b7d3d8c75421450d8 /utils/cni-plugins/Makefile | |
parent | b51b59fe90399c50cc93de735ce9c8c5be422ab6 (diff) |
cni-plugins: set PKG_USE_MIPS16:=0
cni-plugins fail to compile due to MIPS16 instructions somehow. Don't
use them.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'utils/cni-plugins/Makefile')
-rw-r--r-- | utils/cni-plugins/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/cni-plugins/Makefile b/utils/cni-plugins/Makefile index 861c42668..db9c61d29 100644 --- a/utils/cni-plugins/Makefile +++ b/utils/cni-plugins/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cni-plugins PKG_VERSION:=0.8.7 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=Apache-2.0 PKG_LICENSE_FILES:=LICENSE @@ -14,6 +14,7 @@ PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>, Paul Spooren <mail@aparcar PKG_BUILD_DEPENDS:=golang/host PKG_BUILD_PARALLEL:=1 +PKG_USE_MIPS16:=0 GO_PKG:=github.com/containernetworking/plugins/ GO_PKG_BUILD_PKG:=github.com/containernetworking/plugins/plugins/main/... \ |