blob: 53ec2dafe4c0aaa75f1ccc13cfb4005ecf46c78b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# remove lib32-* stuff
pkgname=(${pkgname[@]/lib32-*/})
eval "$(
declare -f build | \
sed '
2 a export CFLAGS="$CFLAGS -mno-tls-direct-seg-refs"
s,https://bugs.archlinux.org/,https://bugs.archlinux32.org/,
'
declare -f package_glibc | \
sed '
s,usr/lib/libmvec-\*\.so,,
s/\S*,mvec\S*//
'
)"
|