]> code.ossystems Code Review - openembedded-core.git/commit
package.bbclass: Disable EXPORT_FUNCTIONS for do_package
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 31 Jan 2011 16:22:14 +0000 (16:22 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 31 Jan 2011 16:22:14 +0000 (16:22 +0000)
commiteed008baf2a9ebdfe90d244208e85a7713e97700
treea4988d0adb3529c55f4e65c24fda154f73669879
parenteb879e2ef815a7931fa76db6b12681eff57d9d02
package.bbclass: Disable EXPORT_FUNCTIONS for do_package

As discovered by Lianhao Lu and Kevin Tian:
"""
do_package checksum changes with switching the order In PACKAGE_CLASSES, e.g:

From
PACKAGE_CLASSES = "package_rpm package_ipk"
To
PACKAGE_CLASSES = "package_ipk package_rpm"

This is undesired since the order only matters for final rootfs generation. The actual
cause is related to how do_package is generated, which depends on when
package.bbclass is first brought in.
"""

Since we never need the EXPORT_FUNCTIONS funcationality for do_package we just drop
it which removes this problem and stablisised checksums.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package.bbclass