diff --git a/rpmlint-mini.changes b/rpmlint-mini.changes index b7d1764..4d19620 100644 --- a/rpmlint-mini.changes +++ b/rpmlint-mini.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Feb 1 12:02:45 UTC 2024 - Andreas Schwab + +- Don't include copy of libm + ------------------------------------------------------------------- Fri Oct 13 12:02:34 UTC 2023 - Ben Greiner diff --git a/rpmlint-mini.spec b/rpmlint-mini.spec index aada931..23a9a18 100644 --- a/rpmlint-mini.spec +++ b/rpmlint-mini.spec @@ -1,7 +1,7 @@ # # spec file for package rpmlint-mini # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -108,8 +108,8 @@ done popd ldd %{python_sitearch}/rpm/*.so | while read L T R A do -# skip libc, it must match the system ld.so (which we cannot replace) -case $L in libc.*) continue;; esac +# skip libc/libm, they must match the system ld.so (which we cannot replace) +case $L in lib[cm].*) continue;; esac cp '-aLt%{buildroot}/opt/testing/lib' "${R}" || # is it a virtual library? ! <"${R}" || # it is a real library and still could not be copied false # this is necessary to really fail