Commit
d43c41fcaf061eaf8bff7bc03de19cdc80226796 refactors the script but
there's a missing '"' in one line, leading to the following message:
poky/scripts/runqemu-gen-tapdevs: command substitution: line 62: unexpected EOF while looking for matching `"'
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
fi
if interfaces=`ip tuntap list` 2>/dev/null; then
- interfaces=`echo "$interfaces |cut -f1 -d:`
+ interfaces=`echo "$interfaces" |cut -f1 -d:`
else
echo "Failed to call 'ip tuntap list'" >&2
exit 1