subversion: fix build for libtool 2.4.7

This commit is contained in:
oreo639 2022-11-05 11:33:12 -07:00 committed by Đoàn Trần Công Danh
parent 4297b784de
commit 5f1d44f27a
1 changed files with 8 additions and 1 deletions

View File

@ -24,6 +24,8 @@ distfiles="https://archive.apache.org/dist/subversion/subversion-${version}.tar.
checksum=c9130e8d0b75728a66f0e7038fc77052e671830d785b5616aad53b4810d3cc28
pre_configure() {
./autogen.sh --release
# Based on native build values
cat <<-EOF >config.cache
ac_cv_python_includes=-I${XBPS_CROSS_BASE}/usr/include/python${py3_ver}
@ -59,7 +61,12 @@ pre_configure() {
else
configure_args+=" --with-apxs"
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() {