summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2023-06-19 09:22:25 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-19 14:25:36 +0100
commit7a6620b5eb26169f6899864a1a6542b336d133d0 (patch)
tree349ddf79cdd1e8cc90b1a069eab3744dd03ebb9d /scripts
parent17400624fa4f800912887ad06d29a494255498be (diff)
downloadpoky-7a6620b5eb26169f6899864a1a6542b336d133d0.tar.gz
runqemu-gen-tapdevs: fix missing variable quote
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 `"' (From OE-Core rev: 94b9b1333a5f779316b9698bb3e4fa7246bae78e) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-gen-tapdevs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-gen-tapdevs b/scripts/runqemu-gen-tapdevs
index 4f8ea979d2..ec3ecb03b9 100755
--- a/scripts/runqemu-gen-tapdevs
+++ b/scripts/runqemu-gen-tapdevs
@@ -59,7 +59,7 @@ if [ ! -x "$RUNQEMU_IFUP" ]; then
59fi 59fi
60 60
61if interfaces=`ip tuntap list` 2>/dev/null; then 61if interfaces=`ip tuntap list` 2>/dev/null; then
62 interfaces=`echo "$interfaces |cut -f1 -d:` 62 interfaces=`echo "$interfaces" |cut -f1 -d:`
63else 63else
64 echo "Failed to call 'ip tuntap list'" >&2 64 echo "Failed to call 'ip tuntap list'" >&2
65 exit 1 65 exit 1