diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-11-11 11:03:01 +0000 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-11-11 11:05:26 +0000 |
commit | b51b59fe90399c50cc93de735ce9c8c5be422ab6 (patch) | |
tree | 314674bc5fd1207c549f3675a0aec4aae1f140db /utils/cni | |
parent | 73396eb14c1598d6d6035841e4fb1fb5ee70e209 (diff) |
cni: set PKG_USE_MIPS16:=0
Compiling cni failes due to MIPS16 somehow. Disable it.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'utils/cni')
-rw-r--r-- | utils/cni/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/cni/Makefile b/utils/cni/Makefile index e428ad628..895c6d2aa 100644 --- a/utils/cni/Makefile +++ b/utils/cni/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cni PKG_VERSION:=0.8.0 -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/cni/ GO_PKG_BUILD_PKG:=github.com/containernetworking/cni/cnitool |