From: Michael Tremer Date: Sat, 30 Sep 2023 11:35:33 +0000 (+0000) Subject: build: Log the UUID of the source package X-Git-Tag: 0.9.30~1592 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8aa13f2d629f3fdf7d3242b54e751bcd74b40536;p=pakfire.git build: Log the UUID of the source package Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/build.c b/src/libpakfire/build.c index 493b89aac..03b4cbf9f 100644 --- a/src/libpakfire/build.c +++ b/src/libpakfire/build.c @@ -2156,8 +2156,9 @@ PAKFIRE_EXPORT int pakfire_build_exec(struct pakfire_build* build, const char* p goto ERROR; const char* nevra = pakfire_package_get_string(package, PAKFIRE_PKG_NEVRA); + const char* uuid = pakfire_package_get_string(package, PAKFIRE_PKG_UUID); - BUILD_INFO(build, "Building %s...\n", nevra); + BUILD_INFO(build, "Building %s (%s)...\n", nevra, uuid); // Check if this package can be build in this environment if (!pakfire_package_supports_build_arch(package, arch)) {