blob: f8de7498d0f925e4ee2274bc1f12a1ca4851ed18 (
plain)
1
2
3
4
5
6
7
8
|
# no Rust and librsvg on i486 (for now), use (a slugishly patched) librsvg-og instead
# (modern SVG renderning with new API will now work and result in errors in the terminal)
if [ "$CARCH" == 'i486' ]; then
makedepends=(${makedepends[@]//librsvg/})
makedepends+=(librsvg-og)
fi
|