From d48fcba47be57d3b96c96683d45158364d154bba Mon Sep 17 00:00:00 2001 From: John McQuah Date: Sun, 2 Jul 2023 20:54:08 -0400 Subject: [PATCH] pkgmeek: do not try to retain xattrs when unpacking --- scripts/pkgmeek | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pkgmeek b/scripts/pkgmeek index 6d34fd0..e45513e 100755 --- a/scripts/pkgmeek +++ b/scripts/pkgmeek @@ -131,7 +131,7 @@ if [ "$pkg_utd" = 0 ] || [[ "$PKGMK_FORCE $PKGMK_EXTRACT_ONLY" =~ yes ]]; then here="${_local_[u]}" case "$here" in *.tar|*.tar.gz|*.tar.Z|*.tgz|*.tar.bz2|*.tbz2|*.tar.xz|*.txz|*.tar.lzma|*.tar.lz|*.7z|*.zip|*.rpm) - bsdtar -p -o -C src -xf "$here" || errUZ+=1 ;; + bsdtar -p -o --no-xattrs -C src -xf "$here" || errUZ+=1 ;; *) cp -r -L "$here" src/ ;; esac