Fix the fix for brp-llvm-compile-lto-elf
Unfortunately the last change to fix hardlink handling broke the script in a different way, due to use of the wrong quote style. One step forward, two steps back. Related: rhbz#2234024
This commit is contained in:
parent
4e2cd49713
commit
54595832f2
@ -50,5 +50,5 @@ 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" | \
|
||||
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
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
Summary: Red Hat specific rpm configuration files
|
||||
Name: redhat-rpm-config
|
||||
Version: 204
|
||||
Version: 205
|
||||
Release: 1%{?dist}
|
||||
# No version specified.
|
||||
License: GPL+
|
||||
@ -254,6 +254,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora/srpm forge.lua
|
||||
%doc buildflags.md
|
||||
|
||||
%changelog
|
||||
* Fri Sep 29 2023 Nikita Popov <npopov@redhat.com> - 205-1
|
||||
- Fix the fix for brp-llvm-compile-lto-elf
|
||||
|
||||
* Tue Sep 26 2023 Florian Weimer <fweimer@redhat.com> - 204-1
|
||||
- Enable PIC mode for assembler files (RHEL-6298)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user