subversion: fix build for libtool 2.4.7
This commit is contained in:
parent
4297b784de
commit
5f1d44f27a
|
@ -24,6 +24,8 @@ distfiles="https://archive.apache.org/dist/subversion/subversion-${version}.tar.
|
||||||
checksum=c9130e8d0b75728a66f0e7038fc77052e671830d785b5616aad53b4810d3cc28
|
checksum=c9130e8d0b75728a66f0e7038fc77052e671830d785b5616aad53b4810d3cc28
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
|
./autogen.sh --release
|
||||||
|
|
||||||
# Based on native build values
|
# Based on native build values
|
||||||
cat <<-EOF >config.cache
|
cat <<-EOF >config.cache
|
||||||
ac_cv_python_includes=-I${XBPS_CROSS_BASE}/usr/include/python${py3_ver}
|
ac_cv_python_includes=-I${XBPS_CROSS_BASE}/usr/include/python${py3_ver}
|
||||||
|
@ -59,7 +61,12 @@ pre_configure() {
|
||||||
else
|
else
|
||||||
configure_args+=" --with-apxs"
|
configure_args+=" --with-apxs"
|
||||||
fi
|
fi
|
||||||
NOCONFIGURE=1 autoreconf -fi
|
|
||||||
|
if [ "$XBPS_BUILD_ENVIRONMENT" = "void-packages-ci" ]; then
|
||||||
|
# This test will fail when run as the root user,
|
||||||
|
# because flock() will ignore file permissions.
|
||||||
|
vsed -i subversion/tests/libsvn_fs/locks-test.c -e '/SVN_TEST_OPTS_PASS(obtain_write_lock_failure,/,+3d'
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
post_configure() {
|
post_configure() {
|
||||||
|
|
Loading…
Reference in New Issue