mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-09 18:59:13 +08:00
gen-dependencies.sh: fix handling variations in "file" output
On some systems, file adds ", with debug info" after "not stripped" Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
b9b681c067
commit
663f2a0864
@ -19,7 +19,7 @@ XARGS="${XARGS:-xargs -r}"
|
|||||||
}
|
}
|
||||||
|
|
||||||
find $TARGETS -type f -a -exec file {} \; | \
|
find $TARGETS -type f -a -exec file {} \; | \
|
||||||
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.* stripped/\1/p' | \
|
sed -n -e 's/^\(.*\):.*ELF.*\(executable\|shared object\).*,.*/\1/p' | \
|
||||||
$XARGS -n1 $READELF -d | \
|
$XARGS -n1 $READELF -d | \
|
||||||
awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
|
awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \
|
||||||
sort -u
|
sort -u
|
||||||
|
Loading…
x
Reference in New Issue
Block a user