fix the "sed ... unterminated `s' command" error
SVN-Revision: 3241
This commit is contained in:
parent
ea1c0bfb48
commit
d4cfc75210
1 changed files with 1 additions and 2 deletions
|
@ -607,8 +607,7 @@ s/ \+/ /g'`
|
|||
ipkg_set_depends $pkg $new_deps
|
||||
done
|
||||
|
||||
new_deps=`echo $new_deps | sed -e 's/[[:space:]]\+/\\
|
||||
/g' | sort | uniq`
|
||||
new_deps=`echo $new_deps | sed -e 's/[[:space:]]\+/\n/g' | sort | uniq`
|
||||
|
||||
local maybe_new_pkgs=
|
||||
for pkg in $new_deps; do
|
||||
|
|
Loading…
Reference in a new issue