diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2023-06-19 09:22:25 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-19 14:25:36 +0100 |
| commit | 7a6620b5eb26169f6899864a1a6542b336d133d0 (patch) | |
| tree | 349ddf79cdd1e8cc90b1a069eab3744dd03ebb9d | |
| parent | 17400624fa4f800912887ad06d29a494255498be (diff) | |
| download | poky-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>
| -rwxr-xr-x | scripts/runqemu-gen-tapdevs | 2 |
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 | |||
| 59 | fi | 59 | fi |
| 60 | 60 | ||
| 61 | if interfaces=`ip tuntap list` 2>/dev/null; then | 61 | if interfaces=`ip tuntap list` 2>/dev/null; then |
| 62 | interfaces=`echo "$interfaces |cut -f1 -d:` | 62 | interfaces=`echo "$interfaces" |cut -f1 -d:` |
| 63 | else | 63 | else |
| 64 | echo "Failed to call 'ip tuntap list'" >&2 | 64 | echo "Failed to call 'ip tuntap list'" >&2 |
| 65 | exit 1 | 65 | exit 1 |
