From: Felix Fietkau Date: Sun, 29 Sep 2013 20:10:42 +0000 (+0000) Subject: scripts/gen-dependencies.sh: use the cross readelf (#12940) X-Git-Tag: reboot~9062 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=b14e0d008c69c1bc9dc3e5a7cd2473a92c758c68;p=openwrt%2Fstaging%2Fchunkeey.git scripts/gen-dependencies.sh: use the cross readelf (#12940) Signed-off-by: Felix Fietkau SVN-Revision: 38259 --- diff --git a/scripts/gen-dependencies.sh b/scripts/gen-dependencies.sh index de8d67376e..889255a167 100755 --- a/scripts/gen-dependencies.sh +++ b/scripts/gen-dependencies.sh @@ -20,7 +20,7 @@ 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