Skip to content

Commit

Permalink
scripts/gen-dependencies.sh: use the cross readelf (#12940)
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Fietkau <nbd@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38259 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
Felix Fietkau committed Sep 29, 2013
1 parent 9d4b0c6 commit 8eabf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gen-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 8eabf47

Please sign in to comment.