diff options
author | krant <aleksey.vasilenko@gmail.com> | 2024-02-23 03:30:19 +0200 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2024-02-22 20:37:16 -0800 |
commit | 374175924c8703f11dd9fa1463e6ab82dbe24fee (patch) | |
tree | b0e72a768bccc47b22588d604c1777b3efd5c21a /utils/sysstat | |
parent | 029c1c5283150ae0cd692b87884761d7770f0fd7 (diff) |
sysstat: add missing xz-utils dependency
Depending only on 'xz' hides the package when 'xz-utils' is not selected
Signed-off-by: krant <aleksey.vasilenko@gmail.com>
Diffstat (limited to 'utils/sysstat')
-rw-r--r-- | utils/sysstat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/sysstat/Makefile b/utils/sysstat/Makefile index d2f454da8..730855ecb 100644 --- a/utils/sysstat/Makefile +++ b/utils/sysstat/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sysstat PKG_VERSION:=12.7.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://sysstat.github.io/sysstat-packages @@ -32,7 +32,7 @@ define Package/sysstat CATEGORY:=Utilities TITLE:=Sysstat performance monitoring tools URL:=https://sysstat.github.io/ - DEPENDS:=$(INTL_DEPENDS) +xz + DEPENDS:=$(INTL_DEPENDS) +xz-utils +xz endef define Package/sysstat/description |