Skip to content

Commit 0caf0f3

Browse files
committed
check-for-missing-dlls: really accept ldd output
In c6b03bc (check-for-missing-dlls.sh: optionally parse `ldd` output, 2020-10-01) we tried to handle output of either `ldd` or `objdump -p`, but we did not _actually_ handle it correctly (filtering out the interesting lines by mistake). Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 2018e36 commit 0caf0f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check-for-missing-dlls.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ do
4949

5050
/usr/bin/objdump -p $(echo "$all_files" | sed -ne 's,[][],\\&,g' -e "s,^$dir[^/]*\.\(dll\|exe\)$,/&,p") |
5151
tr A-Z\\r a-z\ |
52-
grep -e '^.dll name:' -e '^[^ ]*\.\(dll\|exe\):' |
52+
grep -e '^.dll name:' -e '^[^ ]*\.\(dll\|exe\):' -e '\.dll =>' |
5353
while read a b c d
5454
do
5555
case "$a,$b" in

0 commit comments

Comments
 (0)