aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/gen-dependencies.sh
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-06-12 22:02:41 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-06-12 22:02:41 +0000
commit3f8fb64e6008ce6197be13e01d6c34a21e93752a (patch)
treee23644603e716b1e17ff65da92e2c2515115a52b /scripts/gen-dependencies.sh
parentb0ef94f8dac603ef7144a47ddab192404208222a (diff)
downloadupstream-3f8fb64e6008ce6197be13e01d6c34a21e93752a.tar.gz
upstream-3f8fb64e6008ce6197be13e01d6c34a21e93752a.tar.bz2
upstream-3f8fb64e6008ce6197be13e01d6c34a21e93752a.zip
gen-dependencies.sh: only include lib*.so* files in dependency list, to match the filtering of provides lists
SVN-Revision: 32272
Diffstat (limited to 'scripts/gen-dependencies.sh')
-rwxr-xr-xscripts/gen-dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-dependencies.sh b/scripts/gen-dependencies.sh
index ab047b6482..df8073ea33 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