From f6bf6eb68c19e17ac9c11fabdc151f351f47039c Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 29 Sep 2013 20:12:27 +0000 Subject: [PATCH] scripts/gen-dependencies.sh: use the cross readelf (#12940) Signed-off-by: Felix Fietkau Backport of r38259 SVN-Revision: 38260 --- 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 df8073ea33..02cffb20bc 100755 --- a/scripts/gen-dependencies.sh +++ b/scripts/gen-dependencies.sh @@ -19,6 +19,6 @@ 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 | \ + $XARGS -n1 $READELF -d | \ awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \ sort -u -- 2.30.2