projects
/
openwrt
/
staging
/
chunkeey.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17be4e9
)
scripts/gen-dependencies.sh: use the cross readelf (#12940)
author
Felix Fietkau
<nbd@openwrt.org>
Sun, 29 Sep 2013 20:10:42 +0000
(20:10 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 29 Sep 2013 20:10:42 +0000
(20:10 +0000)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 38259
scripts/gen-dependencies.sh
patch
|
blob
|
history
diff --git
a/scripts/gen-dependencies.sh
b/scripts/gen-dependencies.sh
index de8d67376e702fa4bef923110f722e1151556c69..889255a16731807cc7ad8bee8e7478b8dbb24db4 100755
(executable)
--- 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