[oe-commits] Paul Eggleton : classes/license: fix manifest to work with deb

git at git.openembedded.org git at git.openembedded.org
Mon Jul 9 16:00:44 UTC 2012


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

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Thu Jul  5 15:48:23 2012 +0100

classes/license: fix manifest to work with deb

Prepend the license manifest creation call to ROOTFS_POSTPROCESS_COMMAND
instead of appending to ROOTFS_POSTINSTALL_COMMAND. The latter is not
implemented for the deb backend (and probably ought to just be removed
completely), and by using _prepend we can still ensure it occurs before
package info is removed (and before buildhistory in case it is needed
there in future).

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>

---

 meta/classes/license.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass
index e6096a6..4e25cf8 100644
--- a/meta/classes/license.bbclass
+++ b/meta/classes/license.bbclass
@@ -382,7 +382,7 @@ do_populate_lic[sstate-name] = "populate-lic"
 do_populate_lic[sstate-inputdirs] = "${LICSSTATEDIR}"
 do_populate_lic[sstate-outputdirs] = "${LICENSE_DIRECTORY}/"
 
-ROOTFS_POSTINSTALL_COMMAND += "license_create_manifest; "
+ROOTFS_POSTPROCESS_COMMAND_prepend = "license_create_manifest; "
 
 python do_populate_lic_setscene () {
 	sstate_setscene(d)





More information about the Openembedded-commits mailing list