# 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 # disable testing on i486, hopefully this disables also clangd-fuzzer if [ "${CARCH}" = "i486" ]; then unset check fi # temporarily remove ruby-rdoc (because of clashes with rubygems # (why rubygems should have /usr/bin/rdoc and /usr/bin/ri in it # is a miracle to me though?!) eval "$( declare -f package_ruby-stdlib | \ sed ' /depends/ a \ depends=(${depends[@]//ruby-rdoc/}) ' )"