From be974bc8b40bc6f3c4b096f25195823595c17333 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 12 Jun 2012 22:02:41 +0000 Subject: [PATCH] [scripts] 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 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 -- 2.30.2