diff options
Diffstat (limited to 'bin/check-elf-dynamic-objects')
-rwxr-xr-x | bin/check-elf-dynamic-objects | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check-elf-dynamic-objects b/bin/check-elf-dynamic-objects index 3561b4109c78..9d2551d506dc 100755 --- a/bin/check-elf-dynamic-objects +++ b/bin/check-elf-dynamic-objects @@ -58,7 +58,7 @@ done files=$(find "${check_path}/program" "${check_path}/sdk/bin" -type f) # all RPATHs should point to ${INSTDIR}/program so that's the files they find -programfiles=$(basename -a $(echo ${files} | grep -o '/program/[^/]* ')) +programfiles=$(echo ${files} | grep -o '/program/[^/]* ' | xargs -n 1 basename) # whitelists should contain only system libraries that have a good reputation # of maintaining ABI stability |