Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/extra/ruby/PKGBUILD
blob: 2ee10842828e458969325cb7768dee107005196b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# patch architecture in helper shared libs
if [ "${CARCH}" = "pentium4" -o "${CARCH}" = "i686" ]; then
  eval "$(
   declare -f package_ruby | \
      sed '
        s|x86_64-linux|i686-linux|g
      '
  )"
fi
if [ "${CARCH}" = "i486" ]; then
  eval "$(
   declare -f package_ruby | \
      sed '
        s|x86_64-linux|i486-linux|g
      '
  )"
fi