[Rpm-maint] [rpm-software-management/rpm] It is currently not possible to completely disable rpm own debuginfo generation code (Issue #3057)
Simo Sorce
notifications at github.com
Tue Jun 3 15:01:19 UTC 2025
simo5 left a comment (rpm-software-management/rpm#3057)
@judovana it is not complicated, because the debug info extraction was "broken" on the "main" package I created subpackages instead, so in the spec (this is a library that ships only .so files) I have something like:
```
%global debug_package %{nil}
Name: mylib
Version: 1.2.3
Release: %autorelease
[..]
Requires: %{name}-so = %{version}-%{release}
[..]
%files
%doc README.md
%files so
%attr(0755,root,root) %{_libdir}/mylib.so
%files so-debuginfo -f debuginfo.list
%files so-debugsource -f debugsourcefiles.list
```
The correct debug*.list files are currently generated by a script independently from the rpm internal extraction script
--
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/issues/3057#issuecomment-2935793505
You are receiving this because you are subscribed to this thread.
Message ID: <rpm-software-management/rpm/issues/3057/2935793505 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rpm.org/pipermail/rpm-maint/attachments/20250603/a1ead605/attachment-0001.htm>
More information about the Rpm-maint
mailing list