pmb.build._package: update isl workaround (MR 2213)

The plan was to drop this workaround, once alpine releases a new gcc
version, and we regenerate our cross compilers against that version
_and_ drop options="!tracedeps", as latest pmbootstrap aportgen would
do. However !tracedeps wasn't dropped in the latest upgrade. This was
too easy to miss, I'll add a comment to the gcc-cross APKBUILDs so we
see it next time. Let's just update the workaround for this version.
This commit is contained in:
Oliver Smith 2022-10-16 17:58:43 +02:00
parent 35784a5fd7
commit f41659d4ae
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ def init_buildenv(args, apkbuild, arch, strict=False, force=False, cross=None,
# the pkgrel and going out of sync with Alpine's gcc package. This
# workaround can be removed once a newer gcc is in Alpine and we
# rebuild our cross gcc based on the new APKBUILD. See pmaports#1732.
if get_gcc_version(args, arch) == "12.2.1_git20220924-r2":
if get_gcc_version(args, arch) == "12.2.1_git20220924-r3":
pmb.chroot.apk.install(args, ["isl25"], build=False)
return True