scripts/gen-dependencies.sh: use the cross readelf (#12940)
authorFelix Fietkau <nbd@openwrt.org>
Sun, 29 Sep 2013 20:12:27 +0000 (20:12 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 29 Sep 2013 20:12:27 +0000 (20:12 +0000)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Backport of r38259

SVN-Revision: 38260

scripts/gen-dependencies.sh

index df8073ea334caf511ae046b1e8d837e12e2b59c6..02cffb20bca821ccbd61894732e0301463142093 100755 (executable)
@@ -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