From patchwork Thu Mar 17 16:15:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/4] native: empty PACKAGES_DYNAMIC the way we do PACKAGES Date: Thu, 17 Mar 2011 16:15:56 -0000 From: Christopher Larson X-Patchwork-Id: 1551 Message-Id: <02544c5e3162ecf73ffb4a7cbd1039cc0b80b347.1300378309.git.chris_larson@mentor.com> To: openembedded-core@lists.openembedded.org Cc: Chris Larson From: Chris Larson Without this, as a specific example, one has both gtk+-native and gtk+ runtime providing gdk-pixbuf-loader-*, and you can get bitbake preference conflicts as a result if you have preferences specified for both gtk+ and gtk+-native for other things. Signed-off-by: Chris Larson --- meta/classes/native.bbclass | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass index 545a73e..cc32cf5 100644 --- a/meta/classes/native.bbclass +++ b/meta/classes/native.bbclass @@ -7,6 +7,8 @@ EXCLUDE_FROM_WORLD = "1" PACKAGES = "" PACKAGES_virtclass-native = "" +PACKAGES_DYNAMIC = "" +PACKAGES_DYNAMIC_virtclass-native = "" PACKAGE_ARCH = "${BUILD_ARCH}" BASE_PACKAGE_ARCH = "${BUILD_ARCH}"