index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | core/gcc/PKGBUILD | 12 |
diff --git a/core/gcc/PKGBUILD b/core/gcc/PKGBUILD index 610273fa..f344cebe 100644 --- a/core/gcc/PKGBUILD +++ b/core/gcc/PKGBUILD @@ -128,3 +128,15 @@ if [ "${CARCH}" = "i486" ]; then ' )" fi + +# solve temporary build problems around the D compiler (requires gcc=11 which no longer +# exists in the repos, installing it manually in the build section before configure) +makedepends=(${makedepends[@]//gcc-d/}) + +eval "$( + declare -f build | \ + sed ' + /cd gcc-build/ a \ + sudo pacman -d --noconfirm -S gcc-d + ' +)" |