Skip to content
Snippets Groups Projects
Commit 663f2a08 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

gen-dependencies.sh: fix handling variations in "file" output


On some systems, file adds ", with debug info" after "not stripped"

Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent b9b681c0
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ XARGS="${XARGS:-xargs -r}"
}
find $TARGETS -type f -a -exec file {} \; | \
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.* stripped/\1/p' | \
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.*/\1/p' | \
$XARGS -n1 $READELF -d | \
awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
sort -u
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment