]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/license: fix manifest to work with deb
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Thu, 5 Jul 2012 14:48:23 +0000 (15:48 +0100)
committerScott Garman <scott.a.garman@intel.com>
Fri, 10 Aug 2012 16:27:00 +0000 (09:27 -0700)
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@linux.intel.com>
meta/classes/license.bbclass

index 6c4a6739f20852344a14d8430005da1cd9f4c269..cd4512ec7e528934da25a1f3b7426502a54a5f45 100644 (file)
@@ -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)