blob: 184ab2a8c348aab207398d608ec41c5db60615c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# i486-specific
if [ "${CARCH}" = "i486" ]; then
# don't build documentation
makedepends=(${makedepends[@]//gtk-doc/})
eval "$(
declare -f build | \
sed '
s/--enable-gtk-doc/--disable-gtk-doc/
'
)"
fi
|