binutils: fix argument handling in ldd

This commit is contained in:
Lucy Phipps 2021-08-17 06:44:12 +01:00 committed by GitHub
parent 5d9e023646
commit ea367b1d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
objdump -p $@ | grep NEEDED | cut -d ' ' -f 18
objdump -p "$@" | grep NEEDED | cut -d ' ' -f 18