blob: e301368f872ec3dedb37f3aac4b46ab692cec6eb (
plain)
1
2
3
4
5
6
7
8
9
|
# break cycle with gnuplot on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//gnuplot/})
fi
# no python-matplotlib on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//python-matplotlib/})
fi
|