mirror of
https://github.com/openwrt/packages.git
synced 2026-02-04 12:06:29 +08:00
tar: fix EXTRA_DEPENDS
EXTRA_DEPENDS should be used for version constraints. Change to DEPENDS. Fixes:488be84("utils/tar: Make compression, acl, and xattr support configuration options") Fixes:7a49296("utils/tar: Fix defaulting to selecting dependencies") Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
committed by
Josef Schlehofer
parent
2d9126fef6
commit
ad82c17f71
@@ -35,8 +35,7 @@ include $(INCLUDE_DIR)/package.mk
|
||||
define Package/tar
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
DEPENDS:=+PACKAGE_TAR_POSIX_ACL:libacl +PACKAGE_TAR_XATTR:libattr +PACKAGE_TAR_BZIP2:bzip2
|
||||
EXTRA_DEPENDS:=$(if $(CONFIG_PACKAGE_TAR_XZ),xz)
|
||||
DEPENDS:=+PACKAGE_TAR_POSIX_ACL:libacl +PACKAGE_TAR_XATTR:libattr +PACKAGE_TAR_BZIP2:bzip2 +PACKAGE_TAR_XZ:xz +PACKAGE_TAR_XZ:xz-utils
|
||||
TITLE:=GNU tar
|
||||
URL:=https://www.gnu.org/software/tar/
|
||||
MENU:=1
|
||||
@@ -65,8 +64,6 @@ define Package/tar/config
|
||||
|
||||
config PACKAGE_TAR_XZ
|
||||
bool "tar: Enable seamless xz support"
|
||||
select PACKAGE_xz-utils
|
||||
select PACKAGE_xz
|
||||
default y
|
||||
|
||||
config PACKAGE_TAR_ZSTD
|
||||
|
||||
Reference in New Issue
Block a user