Browse Source

Merge pull request #2928 from cshore/pull-request-tar-acl-options

utils/tar: Default to acl and xattr support if it's core default
lilik-openwrt-22.03
Álvaro Fernández Rojas 8 years ago
committed by GitHub
parent
commit
9bdd531164
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      utils/tar/Makefile

+ 3
- 1
utils/tar/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=tar
PKG_VERSION:=1.29
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
@ -39,10 +39,12 @@ define Package/tar/config
if PACKAGE_tar
config PACKAGE_TAR_POSIX_ACL
bool "tar: Enable POSIX ACL support"
default y if USE_FS_ACL_ATTR
default n
config PACKAGE_TAR_XATTR
bool "tar: Enable extended attribute (xattr) support"
default y if USE_FS_ACL_ATTR
default n
config PACKAGE_TAR_GZIP


Loading…
Cancel
Save