From 3f8fb64e6008ce6197be13e01d6c34a21e93752a Mon Sep 17 00:00:00 2001
From: Jo-Philipp Wich <jow@openwrt.org>
Date: Tue, 12 Jun 2012 22:02:41 +0000
Subject: [PATCH] gen-dependencies.sh: only include lib*.so* files in
 dependency list, to match the filtering of provides lists

SVN-Revision: 32272
---
 scripts/gen-dependencies.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/gen-dependencies.sh b/scripts/gen-dependencies.sh
index ab047b648279..df8073ea334c 100755
--- a/scripts/gen-dependencies.sh
+++ b/scripts/gen-dependencies.sh
@@ -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
-- 
2.30.2