]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-debuginfo.patch
- obsolete rpm-static
[packages/rpm.git] / rpm-debuginfo.patch
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
3 @@ -254,7 +254,10 @@ strip_to_debug()
4    $strip_glibs && case "$(file -bi "$2")" in
5      application/x-sharedlib*) g=-g ;;
6    esac
7 -  eu-strip --remove-comment $r $g ${keep_remove_args} -f "$1" "$2" || exit
8 +  local t=$(mktemp "/tmp/rpm.stripped.XXXXXX")
9 +  objcopy --compress-debug-sections "$2" || exit
10 +  eu-strip --remove-comment $r -f "$1" "$2" -o "$t" || exit
11 +  rm -f "$t"
12    chmod 444 "$1" || exit
13  }
14  
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 @@ -194,6 +194,7 @@
18  Group: Development/Debug\
19  AutoReq: 0\
20  AutoProv: 1\
21 +Requires: FHS-debug\
22  %description debuginfo\
23  This package provides debug information for package %{name}.\
24  Debug information is useful when developing applications that use this\
25 @@ -534,7 +534,7 @@
26  #   Same as for "separate" but if the __debug_package global is set then
27  #   the -debuginfo package will have a compatibility link for the main
28  #   ELF /usr/lib/debug/.build-id/xx/yyy -> /usr/lib/.build-id/xx/yyy
29 -%_build_id_links compat
30 +%_build_id_links alldebug
31  
32  # Whether build-ids should be made unique between package version/releases
33  # when generating debuginfo packages. If set to 1 this will pass
34 @@ -563,10 +563,10 @@
35  %_unique_debug_srcs    1
36  
37  # Whether rpm should put debug source files into its own subpackage
38 -#%_debugsource_packages        1
39 +%_debugsource_packages 1
40  
41  # Whether rpm should create extra debuginfo packages for each subpackage
42 -#%_debuginfo_subpackages 1
43 +%_debuginfo_subpackages 1
44  
45  #
46  # Use internal dependency generator rather than external helpers?
This page took 0.035143 seconds and 3 git commands to generate.