aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÁlvaro Fernández Rojas <noltari@gmail.com>2016-07-05 08:28:56 +0200
committerGitHub <noreply@github.com>2016-07-05 08:28:56 +0200
commit9bdd5311642565bed801506acf37510da06d7469 (patch)
tree19f1872da1c2c73d7463a60ff12cd23bcbccae64
parent36fa51e6bacb275fd3ffe8327466b1ce703c14b1 (diff)
parent8d4f5d8bda3324eacd7a2495cab3fc19905e9894 (diff)
Merge pull request #2928 from cshore/pull-request-tar-acl-options
utils/tar: Default to acl and xattr support if it's core default
-rw-r--r--utils/tar/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/tar/Makefile b/utils/tar/Makefile
index d317329dc..96a64215b 100644
--- a/utils/tar/Makefile
+++ b/utils/tar/Makefile
@@ -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