blob: 469392fc52cb879890b41c6951bb8c160de34824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
eval "$(
declare -f build | \
sed '
s/--enable/--enable-64-bit-bfd \0/
'
)"
# see https://sourceware.org/bugzilla/show_bug.cgi?id=22537
# linking segfault in glibc
source+=(elf32_hppa_static_pie.patch)
md5sums+=('68e3ce93b66ddec6c36b5146df1ed713')
eval "$(
declare -f prepare | \
sed '
/}/i patch -p1 -i "$srcdir/elf32_hppa_static_pie.patch"
'
)"
|