Use correct format specifier in brp-llvm-compile-lto-elf
Related: RHEL-11165
This commit is contained in:
parent
820c23a121
commit
1c5e204554
@ -49,6 +49,6 @@ check_convert_bitcode () {
|
|||||||
echo "Checking for LLVM bitcode artifacts"
|
echo "Checking for LLVM bitcode artifacts"
|
||||||
export -f check_convert_bitcode
|
export -f check_convert_bitcode
|
||||||
# Deduplicate by device:inode to avoid processing hardlinks in parallel.
|
# 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- | \
|
awk '!seen[$1]++' | cut -d" " -f2- | \
|
||||||
xargs -d"\n" -r -n1 -P$NCPUS sh -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0
|
xargs -d"\n" -r -n1 -P$NCPUS sh -c "check_convert_bitcode \$@ $CLANG_FLAGS" ARG0
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# 2) When making changes, increment the version (in baserelease) by 1.
|
# 2) When making changes, increment the version (in baserelease) by 1.
|
||||||
# rpmdev-bumpspec and other tools update the macro below, which is used
|
# rpmdev-bumpspec and other tools update the macro below, which is used
|
||||||
# in Version: to get the desired effect.
|
# in Version: to get the desired effect.
|
||||||
%global baserelease 268
|
%global baserelease 269
|
||||||
|
|
||||||
Summary: Red Hat specific rpm configuration files
|
Summary: Red Hat specific rpm configuration files
|
||||||
Name: redhat-rpm-config
|
Name: redhat-rpm-config
|
||||||
@ -255,6 +255,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora common.lua
|
|||||||
%doc buildflags.md
|
%doc buildflags.md
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Oct 5 2023 Nikita Popov <npopov@redhat.com> - 269-1
|
||||||
|
- Use correct format specifier in brp-llvm-compile-lto-elf
|
||||||
|
|
||||||
* Fri Sep 29 2023 Nikita Popov <npopov@redhat.com> - 268-1
|
* Fri Sep 29 2023 Nikita Popov <npopov@redhat.com> - 268-1
|
||||||
- Fix brp-llvm-compile-lto-elf parallelism with hardlinks (#2234024)
|
- Fix brp-llvm-compile-lto-elf parallelism with hardlinks (#2234024)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user