mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 16:40:37 +02:00
[scripts] gen-dependencies.sh: only include lib*.so* files in dependency list, to match the filtering of provides lists
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32272 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
266f935b93
commit
bf7305f71f
@ -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…
Reference in New Issue
Block a user