]> git.ipfire.org Git - pakfire.git/commitdiff
build: Log the UUID of the source package
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 30 Sep 2023 11:35:33 +0000 (11:35 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 30 Sep 2023 11:35:33 +0000 (11:35 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/build.c

index 493b89aac4619ac07cf13ab89c849df8de89a627..03b4cbf9f3ce9ae90c6861f042c9c7051ce79034 100644 (file)
@@ -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)) {