blob: 56ede89855347e7a7304cdcad028c7dc8e1e28c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# i486, shasumming git archives is broken?
if [ "${CARCH}" = "i486" ]; then
sha256sums=(SKIP)
fi
# ABI differences in libxml2, disable XAR
eval "$(
declare -f build | \
sed '
s/configure/configure --without-xml2 /
'
)"
|