]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-debuginfo.patch
- improve debuginfo handling: put /usr/lib/.build-id/ in debug packages,
[packages/rpm.git] / rpm-debuginfo.patch
CommitLineData
ebe974a8
AF
1--- rpm-5.3.1/scripts/find-debuginfo.sh.wiget 2009-09-10 03:52:13.000000000 +0200
2+++ rpm-5.3.1/scripts/find-debuginfo.sh 2010-05-30 16:53:33.275994510 +0200
6ecfe7c2
JR
3@@ -254,7 +254,10 @@ strip_to_debug()
4 $strip_glibs && case "$(file -bi "$2")" in
5 application/x-sharedlib*) g=-g ;;
9d68bb95 6 esac
6ecfe7c2 7- eu-strip --remove-comment $r $g ${keep_remove_args} -f "$1" "$2" || exit
ce608720
PS
8+ local t=$(mktemp "/tmp/rpm.stripped.XXXXXX")
9+ objcopy --compress-debug-sections "$2" || exit
6ecfe7c2 10+ eu-strip --remove-comment $r -f "$1" "$2" -o "$t" || exit
ce608720 11+ rm -f "$t"
6ecfe7c2 12 chmod 444 "$1" || exit
6fc678f5
JB
13 }
14
f8fca5b0
JR
15--- rpm-4.16.1.3/macros.in.orig 2021-03-24 09:50:21.000000000 +0100
16+++ rpm-4.16.1.3/macros.in 2021-03-24 10:05:10.129698408 +0100
17@@ -534,7 +534,7 @@
18 # Same as for "separate" but if the __debug_package global is set then
19 # the -debuginfo package will have a compatibility link for the main
20 # ELF /usr/lib/debug/.build-id/xx/yyy -> /usr/lib/.build-id/xx/yyy
21-%_build_id_links compat
22+%_build_id_links alldebug
23
24 # Whether build-ids should be made unique between package version/releases
25 # when generating debuginfo packages. If set to 1 this will pass
26@@ -563,10 +563,10 @@
27 %_unique_debug_srcs 1
28
29 # Whether rpm should put debug source files into its own subpackage
30-#%_debugsource_packages 1
31+%_debugsource_packages 1
32
33 # Whether rpm should create extra debuginfo packages for each subpackage
34-#%_debuginfo_subpackages 1
35+%_debuginfo_subpackages 1
36
37 #
38 # Use internal dependency generator rather than external helpers?
This page took 0.063692 seconds and 4 git commands to generate.