diff options
author | Chris Larson <chris_larson@mentor.com> | 2011-03-15 07:37:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-03-21 17:49:41 +0000 |
commit | 41d77ac37f606e54293826ba1e94a4254bddbfa6 (patch) | |
tree | 98d4069bd3da9dec8c6888c1a1755686ee491e5c /meta/classes/native.bbclass | |
parent | 3ef80db73c69b8a731beb8ea4921357a041564e5 (diff) | |
download | openembedded-core-41d77ac37f606e54293826ba1e94a4254bddbfa6.tar.gz openembedded-core-41d77ac37f606e54293826ba1e94a4254bddbfa6.tar.bz2 openembedded-core-41d77ac37f606e54293826ba1e94a4254bddbfa6.tar.xz openembedded-core-41d77ac37f606e54293826ba1e94a4254bddbfa6.zip |
native: empty PACKAGES_DYNAMIC the way we do PACKAGES
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 <chris_larson@mentor.com>
Diffstat (limited to 'meta/classes/native.bbclass')
-rw-r--r-- | 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 545a73eb8..cc32cf59a 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}" |