[oe-commits] Saul Wold : bitbake.conf: Add PACKAGE_BEFORE_PN to PACKAGES

git at git.openembedded.org git at git.openembedded.org
Wed Jul 4 14:02:40 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: b41b2bc584756956a48c9c5f91e7337e821105b2
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b41b2bc584756956a48c9c5f91e7337e821105b2

Author: Saul Wold <sgw at linux.intel.com>
Date:   Thu Jun 28 13:33:42 2012 -0700

bitbake.conf: Add PACKAGE_BEFORE_PN to PACKAGES

By doing this we can easily add addtional packages that can be
greedy before PN, but after some of the other standard packages.

This will also allow us to simplify the lib_package class to set
this variable.

Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/conf/bitbake.conf |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 050be2e..3453a86 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -253,7 +253,8 @@ SOLIBSDEV_darwin = ".dylib"
 SOLIBSDEV_darwin8 = ".dylib"
 SOLIBSDEV_darwin9 = ".dylib"
 
-PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale ${PN}"
+PACKAGE_BEFORE_PN ?= ""
+PACKAGES = "${PN}-dbg ${PN}-staticdev ${PN}-dev ${PN}-doc ${PN}-locale ${PACKAGE_BEFORE_PN} ${PN}"
 PACKAGES_DYNAMIC = "${PN}-locale-*"
 FILES = ""
 





More information about the Openembedded-commits mailing list