]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-debuginfo.patch
append abi in target platform on %{arm}
[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 @@ -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.042013 seconds and 3 git commands to generate.