[1/5] buildchroot-host: Drop unneeded :native for riscv64 setup

Message ID 3369997b3c39ee12c1e3cf91c90debf67ab8f98e.1600962590.git.jan.kiszka@siemens.com
State Superseded, archived
Headers show
Series More fixes and cleanups | expand

Commit Message

Jan Kiszka Sept. 24, 2020, 7:49 a.m. UTC
From: Jan Kiszka <jan.kiszka@siemens.com>

This is not a control file, this is a list passed to apt, thus "native"
is implicit.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 meta/recipes-devtools/buildchroot/buildchroot-host.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Patch

diff --git a/meta/recipes-devtools/buildchroot/buildchroot-host.bb b/meta/recipes-devtools/buildchroot/buildchroot-host.bb
index 8e3a52cf..d8498a56 100644
--- a/meta/recipes-devtools/buildchroot/buildchroot-host.bb
+++ b/meta/recipes-devtools/buildchroot/buildchroot-host.bb
@@ -19,6 +19,6 @@  BUILDCHROOT_PREINSTALL ?= " \
 BUILDCHROOT_PREINSTALL_riscv64 ?= " \
     ${BUILDCHROOT_PREINSTALL_COMMON} \
     libc6:${DISTRO_ARCH} \
-    gcc-riscv64-linux-gnu:native \
-    g++-riscv64-linux-gnu:native \
-    dpkg-cross:native"
+    gcc-riscv64-linux-gnu \
+    g++-riscv64-linux-gnu \
+    dpkg-cross"