gen-dependencies.sh: only include lib*.so* files in dependency list, to match the...
[openwrt/openwrt.git] / scripts / gen-dependencies.sh
index ab047b6482797c7b0728698f2d976688617770ff..df8073ea334caf511ae046b1e8d837e12e2b59c6 100755 (executable)
@@ -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