3
0
forked from pool/build-compare

Accepting request 239764 from home:a_jaeger:FactoryFix

Fix last patch

OBS-URL: https://build.opensuse.org/request/show/239764
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/build-compare?expand=0&rev=141
This commit is contained in:
Stephan Kulow 2014-07-07 17:22:50 +00:00 committed by Git OBS Bridge
parent b9bbf88e67
commit e834b3955a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jul 7 08:28:45 UTC 2014 - aj@suse.com
- Fix last patch to not use non-existant file (bnc#877078).
-------------------------------------------------------------------
Fri May 9 18:30:26 UTC 2014 - johannesobermayr@gmx.de

View File

@ -463,7 +463,7 @@ check_single_file()
echo "" >$file1
echo "" >$file2
# Don't compare .build-id and .gnu_debuglink sections
for section in $(objdump -s $file | grep "Contents of section .*:" | sed -r "s,.* (\..*):,\1,g" | grep -v -e "\.build-id" -e "\.gnu_debuglink" | tr
for section in $(objdump -s new/$file | grep "Contents of section .*:" | sed -r "s,.* (\..*):,\1,g" | grep -v -e "\.build-id" -e "\.gnu_debuglink" | tr
"\n" " "); do
objdump -s -j $section old/$file | sed "s,old/,," >> $file1
objdump -s -j $section new/$file | sed "s,new/,," >> $file2