diff options
author | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-02-19 16:27:55 -0300 |
---|---|---|
committer | Eneas U de Queiroz <cotequeiroz@gmail.com> | 2021-02-19 16:39:19 -0300 |
commit | ac3beceb9614021d0de2b57c8d7aad716d824554 (patch) | |
tree | 9ea74712ef27204e799904a9e623e1e36d416812 /utils/reptyr | |
parent | 7f21a4fa1b07c965b35e57be0f007bd80c316ffc (diff) |
reptyr: Don't build for mipsel
The package does not support any mips archs, including mipsel.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Diffstat (limited to 'utils/reptyr')
-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 4a9df64cd..111bc8063 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:=1 +PKG_RELEASE:=2 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) + DEPENDS:=@!(arc||mips||mipsel) endef define Package/reptyr/description |