gen-dependencies.sh: only include lib*.so* files in dependency list, to match the filtering of provides lists

SVN-Revision: 32272
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 12 years ago
parent b0ef94f8da
commit 3f8fb64e60

@ -20,5 +20,5 @@ XARGS="${XARGS:-xargs -r}"
find $TARGETS -type f -a -exec file {} \; | \
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.* stripped/\1/p' | \
$XARGS -n1 readelf -d | \
awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
sort -u

Loading…
Cancel
Save