diff --git a/brp-llvm-compile-lto-elf b/brp-llvm-compile-lto-elf index 788cb3b..1756651 100755 --- a/brp-llvm-compile-lto-elf +++ b/brp-llvm-compile-lto-elf @@ -49,6 +49,6 @@ check_convert_bitcode () { echo "Checking for LLVM bitcode artifacts" export -f check_convert_bitcode # Deduplicate by device:inode to avoid processing hardlinks in parallel. -find "$RPM_BUILD_ROOT" -type f -name "*.[ao]" -printf "%d:%i %p\n" | \ +find "$RPM_BUILD_ROOT" -type f -name "*.[ao]" -printf "%D:%i %p\n" | \ awk '!seen[$1]++' | cut -d" " -f2- | \ xargs -d"\n" -r -n1 -P$NCPUS sh -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0 diff --git a/redhat-rpm-config.spec b/redhat-rpm-config.spec index 9f807cf..a4c0f8a 100644 --- a/redhat-rpm-config.spec +++ b/redhat-rpm-config.spec @@ -4,7 +4,7 @@ # 2) When making changes, increment the version (in baserelease) by 1. # rpmdev-bumpspec and other tools update the macro below, which is used # in Version: to get the desired effect. -%global baserelease 268 +%global baserelease 269 Summary: Red Hat specific rpm configuration files Name: redhat-rpm-config @@ -255,6 +255,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora common.lua %doc buildflags.md %changelog +* Thu Oct 5 2023 Nikita Popov - 269-1 +- Use correct format specifier in brp-llvm-compile-lto-elf + * Fri Sep 29 2023 Nikita Popov - 268-1 - Fix brp-llvm-compile-lto-elf parallelism with hardlinks (#2234024)