Remove both old and new library names in glibc-hwcaps removal (#1983677)
This commit is contained in:
parent
ac81c2f6e6
commit
44bdf7a54c
12
glibc.spec
12
glibc.spec
@ -111,7 +111,7 @@
|
|||||||
Summary: The GNU libc libraries
|
Summary: The GNU libc libraries
|
||||||
Name: glibc
|
Name: glibc
|
||||||
Version: %{glibcversion}
|
Version: %{glibcversion}
|
||||||
Release: 48%{?dist}
|
Release: 49%{?dist}
|
||||||
|
|
||||||
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
|
# In general, GPLv2+ is used by programs, LGPLv2+ is used for
|
||||||
# libraries.
|
# libraries.
|
||||||
@ -1967,10 +1967,11 @@ install_libs = { "anl", "BrokenLocale", "c", "dl", "m", "mvec",
|
|||||||
remove_regexps = {}
|
remove_regexps = {}
|
||||||
for i = 1, #install_libs do
|
for i = 1, #install_libs do
|
||||||
-- Versioned install name.
|
-- Versioned install name.
|
||||||
remove_regexps[i] = ("lib" .. install_libs[i]
|
remove_regexps[#remove_regexps + 1] = ("lib" .. install_libs[i]
|
||||||
.. "%%-[2-9]%%.[0-9]+%%.so$")
|
.. "%%-[2-9]%%.[0-9]+%%.so$")
|
||||||
-- Unversioned install name.
|
-- Unversioned install name.
|
||||||
remove_regexps[i] = ("lib" .. install_libs[i] .. "%%.so%.[0-9]+$")
|
remove_regexps[#remove_regexps + 1] = ("lib" .. install_libs[i]
|
||||||
|
.. "%%.so%%.[0-9]+$")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Two exceptions:
|
-- Two exceptions:
|
||||||
@ -2241,6 +2242,9 @@ fi
|
|||||||
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
%files -f compat-libpthread-nonshared.filelist -n compat-libpthread-nonshared
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jul 24 2021 Florian Weimer <fweimer@redhat.com> - 2.33.9000-49
|
||||||
|
- Remove both old and new library names in glibc-hwcaps removal (#1983677)
|
||||||
|
|
||||||
* Fri Jul 23 2021 Florian Weimer <fweimer@redhat.com> - 2.33.9000-48
|
* Fri Jul 23 2021 Florian Weimer <fweimer@redhat.com> - 2.33.9000-48
|
||||||
- Auto-sync with upstream branch master,
|
- Auto-sync with upstream branch master,
|
||||||
commit 9a7ab0769b295cbf5232140401742a8f34bda3de:
|
commit 9a7ab0769b295cbf5232140401742a8f34bda3de:
|
||||||
|
Loading…
Reference in New Issue
Block a user