mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
runqemu-gen-tapdevs: fix missing variable quote
Commit d43c41fcaf
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 `"'
(From OE-Core rev: 94b9b1333a5f779316b9698bb3e4fa7246bae78e)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
17400624fa
commit
7a6620b5eb
|
@ -59,7 +59,7 @@ if [ ! -x "$RUNQEMU_IFUP" ]; then
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue
Block a user