From: Saul Wold Date: Thu, 28 Jun 2012 20:33:42 +0000 (-0700) Subject: bitbake.conf: Add PACKAGE_BEFORE_PN to PACKAGES X-Git-Tag: 2015-4~10132 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b41b2bc584756956a48c9c5f91e7337e821105b2;p=openembedded-core.git 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 --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 050be2e76c..3453a86875 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 = ""