From 7a6620b5eb26169f6899864a1a6542b336d133d0 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Mon, 19 Jun 2023 09:22:25 -0400 Subject: 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 Signed-off-by: Richard Purdie --- scripts/runqemu-gen-tapdevs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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 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 -- cgit v1.2.3-54-g00ecf