diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-10-09 18:19:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 18:19:21 -0700 |
commit | d64b945013d92e7a5c8c066af3fd6b186cebad6d (patch) | |
tree | 06c1a8daed625207b07386f2b18ba65807ccd20f | |
parent | cde758a2c81ebb0ee9529c73dd53a427bb3d641d (diff) | |
parent | d625b6ddd01656c66f87c4dfbe3f06ee7287f5e7 (diff) |
Merge pull request #13603 from neheb/ctop
ctop: match ARCH with docker-ce
-rw-r--r-- | utils/ctop/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/ctop/Makefile b/utils/ctop/Makefile index 85242dbe5..3072544c7 100644 --- a/utils/ctop/Makefile +++ b/utils/ctop/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ctop PKG_VERSION:=0.7.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=v$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/bcicen/ctop/archive @@ -25,7 +25,7 @@ define Package/ctop CATEGORY:=Utilities TITLE:=Top-like interface for container metrics URL:=https://ctop.sh/ - DEPENDS:=$(GO_ARCH_DEPENDS) @!mips @!mipsel + DEPENDS:=$(GO_ARCH_DEPENDS) @(aarch64||arm||x86_64) endef define Package/ctop/description |