blob: 13c635be55cdfda6fbbb8a9c55ff5267b59d2b4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
eval "$(
declare -f build | \
sed '
s@./configure@./configure -no-sse2@g
'
)"
if [ "$CARCH" = 'i486' ]; then
eval "$(
declare -f build | \
sed '
s@./configure@./configure -no-feature-vulkan@g
'
)"
fi
|