diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-03-04 23:53:34 -0800 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-03-06 14:04:33 -0800 |
commit | a30518f99ecc3f255e7eeec3bca3d49caaa92d58 (patch) | |
tree | 647ee618ef0cf7cff6bd1b5a670fcedabdd70135 /utils | |
parent | 45dcec32ce9458bb3a5116ef925a92fc3256e2d1 (diff) |
reptyr: do not build on mips64
mips of any kind is not supported.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/reptyr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/reptyr/Makefile b/utils/reptyr/Makefile index 111bc8063..d5f3402ce 100644 --- a/utils/reptyr/Makefile +++ b/utils/reptyr/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=reptyr PKG_VERSION:=0.8.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/nelhage/reptyr/archive/ @@ -23,7 +23,7 @@ define Package/reptyr CATEGORY:=Utilities TITLE:=Tool for reparenting running programs URL:=https://github.com/nelhage/reptyr - DEPENDS:=@!(arc||mips||mipsel) + DEPENDS:=@!(arc||mips||mipsel||mips64) endef define Package/reptyr/description |