pkgmeek: do not try to retain xattrs when unpacking

This commit is contained in:
John McQuah 2023-07-02 20:54:08 -04:00
parent 69b9a3dc2b
commit d48fcba47b
1 changed files with 1 additions and 1 deletions

View File

@ -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