86d6fafbbe
- make patches git quiltimport friendlier OBS-URL: https://build.opensuse.org/request/show/985294 OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=609
20 lines
594 B
Diff
20 lines
594 B
Diff
--- scripts/find-debuginfo.in.orig 2021-09-23 20:28:21.646855995 +0000
|
|
+++ scripts/find-debuginfo.in 2021-09-23 20:28:53.530790698 +0000
|
|
@@ -434,6 +434,16 @@ while read nlinks inum f; do
|
|
;;
|
|
*) continue ;;
|
|
esac
|
|
+ # double check that we really have an ELF file,
|
|
+ # to handle monodevelop-debugger-gdb and monodevelop-debugger-mdb
|
|
+ ftype=`/usr/bin/file $f | cut -d: -f2-`
|
|
+ case $ftype in
|
|
+ *ELF*) ;;
|
|
+ *)
|
|
+ echo "$f is not an ELF file, skipping"
|
|
+ continue
|
|
+ ;;
|
|
+ esac
|
|
if [ $nlinks -gt 1 ]; then
|
|
var=seen_$inum
|
|
if test -n "${!var}"; then
|