blob: 56527bc7bd0faf366d29d2ac67b778d43aec8451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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+=('67e4eccc8134fc422f86cc1f1371b84be11f6f84ec5f041ea6178e304f0fe995')
eval "$(
declare -f prepare | \
sed '
/chromium-system-icu.patch/a patch -Np1 -i ../chromium-vaapi-uintptr.patch
'
)"
|