blob: db83f313668181ee3d26d1825bebbe3c29a0c3bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# work around linker errors, see https://bbs.archlinux32.org/viewtopic.php?pid=4894#p4894
eval "$(
declare -f build | \
sed '
/_flags/ a _flags+=('fatal_linker_warnings=false')
'
)"
# fix regression uintptr_t in vaapi
source+=(chromium-vaapi-uintptr.patch)
sha256sums+=('c1b2285dec2acae6108a496cba9230680cd5eedf3467d4563ec4b546fc8224aa')
eval "$(
declare -f prepare | \
sed '
/chromium-vaapi-fix-the/a patch -Np1 -i ../chromium-vaapi-uintptr.patch
'
)"
# no SAMUFLAGS, see https://www.mail-archive.com/pacman-dev@archlinux.org/msg17258.html
# going the sed-way
eval "$(
declare -f build | \
sed '
s/ninja/ninja -j 1/
'
)"
|