From: Felix Fietkau Date: Sun, 19 Feb 2017 14:28:01 +0000 (+0100) Subject: gen-dependencies.sh: fix handling variations in "file" output X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fyousong.git;a=commitdiff_plain;h=663f2a0864b0ca7e65575fc75479e37712a80114 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 --- diff --git a/scripts/gen-dependencies.sh b/scripts/gen-dependencies.sh index c6b6f75f55..0aa01b78ec 100755 --- a/scripts/gen-dependencies.sh +++ b/scripts/gen-dependencies.sh @@ -19,7 +19,7 @@ XARGS="${XARGS:-xargs -r}" } 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 | \ awk '$2 ~ /NEEDED/ && $NF !~ /interpreter/ && $NF ~ /^\[?lib.*\.so/ { gsub(/[\[\]]/, "", $NF); print $NF }' | \ sort -u