libarchive: override ac_cv_func_lchmod detection mostly for musl builds.
The issue is that lchmod() is implemented in musl but returns ENOTSUP on symlinks and the libarchive returns warnings when extracting files. Override lchmod detection and simple disable it for musl too (such as with glibc).
This commit is contained in:
parent
8882bd01de
commit
6690a2fb68
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ version=3.1.2
|
|||
revision=5
|
||||
bootstrap=yes
|
||||
build_style=gnu-configure
|
||||
configure_args="--without-xml2 --without-nettle --disable-rpath"
|
||||
configure_args="--without-xml2 --without-nettle --disable-rpath ac_cv_func_lchmod=no"
|
||||
makedepends="zlib-devel bzip2-devel liblzma-devel"
|
||||
short_desc="Library to read/write several different streaming archive formats"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
|
|
Loading…
Reference in a new issue