blob: f7e86cb131a08b1605a6348b800d0a5b30f83cd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# i486-specific
if [ "${CARCH}" = "i486" ]; then
# disable sphinx for now, needs too many packages
makedepends=(${makedepends[@]//python2-sphinx/})
eval "$(
declare -f build | \
sed '
/make.*html/d
'
)"
pkgname=(${pkgname[@]//python-urllib3-doc})
unset check
fi
|