projects
/
openwrt
/
staging
/
robimarko.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0ef94f
)
gen-dependencies.sh: only include lib*.so* files in dependency list, to match the...
author
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 12 Jun 2012 22:02:41 +0000
(22:02 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 12 Jun 2012 22:02:41 +0000
(22:02 +0000)
SVN-Revision: 32272
scripts/gen-dependencies.sh
patch
|
blob
|
history
diff --git
a/scripts/gen-dependencies.sh
b/scripts/gen-dependencies.sh
index ab047b6482797c7b0728698f2d976688617770ff..df8073ea334caf511ae046b1e8d837e12e2b59c6 100755
(executable)
--- a/
scripts/gen-dependencies.sh
+++ b/
scripts/gen-dependencies.sh
@@
-20,5
+20,5
@@
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 | \
- awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
+ awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/
&& $NF ~ /^\[?lib.*\.so/
{ gsub(/[\[\]]/, "", $NF); print $NF }' | \
sort -u