diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-10 09:24:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-11 18:03:26 +0100 |
commit | 74daad03ca29a03b0005f7d2b90a0347d5b583a5 (patch) | |
tree | ceadde74b6f86c4b061b301ecec2755386b28998 /meta/classes/package.bbclass | |
parent | 9cd30beba77497288eeb2545920bc23f2a77cf16 (diff) | |
download | openembedded-core-74daad03ca29a03b0005f7d2b90a0347d5b583a5.tar.gz openembedded-core-74daad03ca29a03b0005f7d2b90a0347d5b583a5.tar.bz2 openembedded-core-74daad03ca29a03b0005f7d2b90a0347d5b583a5.zip |
package.bbclass: Drop EXPORT_FUNCTIONS use against mapping_rename_hook
The usage of this function renaming and it being called using
bb.build.exec_func() causes needless indirection loops, confusing log
files and seems generally pointless.
This simplification makes the process much simpler and faster. I can't
come up with a good reason why the export_functions functionality is
needed for this function.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r-- | meta/classes/package.bbclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 44e551f6dd..3d0f406b80 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1788,7 +1788,7 @@ addtask package_write before do_build after do_package # Helper functions for the package writing classes # -python package_mapping_rename_hook () { +def mapping_rename_hook(d): """ Rewrite variables to account for package renaming in things like debian.bbclass or manual PKG variable name changes @@ -1799,6 +1799,4 @@ python package_mapping_rename_hook () { runtime_mapping_rename("RPROVIDES", d) runtime_mapping_rename("RREPLACES", d) runtime_mapping_rename("RCONFLICTS", d) -} -EXPORT_FUNCTIONS mapping_rename_hook |