forked from Mirror/pmbootstrap
pmb.build.package: log the cross compile type
Part-of: https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/merge_requests/2568
This commit is contained in:
parent
bef3b43343
commit
215a0de035
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue