summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2018-08-01 11:29:10 +0300
committerPanu Matilainen <pmatilai@redhat.com>2018-08-08 15:23:39 +0300
commitd25f508c2d630e8aa05c5f74b6f934955be4af06 (patch)
tree0718f04cebaebfe63ae6b2d44d326e4b19057173
parentc0f6f47010bdb84f63ae8525d3b7e06d66ab3146 (diff)
downloadrpm-d25f508c2d630e8aa05c5f74b6f934955be4af06.tar.gz
Fix an obvious typo in dwz filename generation
This typo has always been there since the initial implementation in Fedora-specific patches in 2012 and inherited upstream. Which suggests something hasn't been working right all this time, or then this will break something all of a sudden... (cherry picked from commit 4bd45009b46e85949ab70e134ccab4bd6aeaccb4)
-rwxr-xr-xscripts/find-debuginfo.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find-debuginfo.sh b/scripts/find-debuginfo.sh
index 90a44942d..2b50d878e 100755
--- a/scripts/find-debuginfo.sh
+++ b/scripts/find-debuginfo.sh
@@ -493,7 +493,7 @@ if $run_dwz \
let ++dwz_multifile_idx
dwz_multifile_suffix=".${dwz_multifile_idx}"
done
- dwz_multfile_name="${dwz_multifile_name}${dwz_multifile_suffix}"
+ dwz_multifile_name="${dwz_multifile_name}${dwz_multifile_suffix}"
dwz_opts="-h -q -r"
[ ${#dwz_files[@]} -gt 1 ] \
&& dwz_opts="${dwz_opts} -m .dwz/${dwz_multifile_name}"