blob: 472071e260b33fd20135c3f7db7381b4098cc8fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# bootstrapped packages in first step from /opt/ruby- contain
# /opt/ruby-XXX/bin in the binaries in /usr/bin and they have
# wrong architecture strings in native library code
eval "$(
declare -f build | \
sed '
3 i export RUBYLIB=/usr/lib/ruby/3.0.0/x86-linux
'
)"
eval "$(
declare -f package | \
sed '
3 i export RUBYLIB=/usr/lib/ruby/3.0.0/x86-linux
'
)"
unset check
|