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:
Juan RP 2014-03-20 16:01:42 +01:00
parent 8882bd01de
commit 6690a2fb68

View file

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