scripts: avoid outputting empty lines in gen-dependencies.sh
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 44208
This commit is contained in:
parent
c3787d4c0c
commit
a06f81cc3b
1 changed files with 1 additions and 1 deletions
|
@ -28,6 +28,6 @@ tmp=`mktemp $TMP_DIR/dep.XXXXXXXX`
|
|||
for kmod in `find $TARGETS -type f -name \*.ko`; do
|
||||
$OBJCOPY -O binary -j .modinfo $kmod $tmp
|
||||
sed -e 's,\x00,\n,g' $tmp | \
|
||||
sed -ne '/^depends=.\+/ { s/^depends=//; s/\(,\|$\)/.ko\n/gp; q }'
|
||||
sed -ne '/^depends=.\+/ { s/^depends=//; s/,/.ko\n/g; s/$/.ko/p; q }'
|
||||
done | sort -u
|
||||
rm -f $tmp
|
||||
|
|
Loading…
Reference in a new issue