index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | lib/common-functions | 3 |
diff --git a/lib/common-functions b/lib/common-functions index 8c21101..4e5bd45 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -352,7 +352,7 @@ recursively_umount_and_rm() { # mangle_pkgbuild $PKGBUILD [$sub_pkgrel] # mangle $arch in PKBUILDs to contain i486, i686, pentium3 # append $sub_pkgrel to the pkgrel -# remove "lib32-" from {make,check,opt,}depends +# remove "lib32-" and "gcc-multilib" from {make,check,opt,}depends mangle_pkgbuild() { local PKGBUILD="$1" @@ -385,6 +385,7 @@ mangle_pkgbuild() { } } s/\(["'"'"'([:space:]]\)lib32-/\1/g + s/\(["'"'"'([:space:]]\)gcc-multilib\(["'"'"')[:space:]]\)/\1gcc\2/g } ' "${PKGBUILD}" } |