Skip to content
Snippets Groups Projects
Unverified Commit 215a0de0 authored by Oliver Smith's avatar Oliver Smith
Browse files

pmb.build.package: log the cross compile type

Part-of: !2568
parent bef3b433
No related branches found
No related tags found
1 merge request!2568Rework Cross Compile Type
......@@ -705,7 +705,11 @@ def packages(
pmb.chroot.apk.install(depends_build, chroot, build=False)
# Build and finish up
logging.info(f"@YELLOW@=>@END@ @BLUE@{channel}/{pkg['name']}@END@: Building package")
msg = f"@YELLOW@=>@END@ @BLUE@{channel}/{pkg['name']}@END@: Building package"
if cross != "unnecessary":
msg += f" (cross compiling: {cross})"
logging.info(msg)
try:
run_abuild(
context,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment