diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-01 11:08:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-01 11:45:00 +0100 |
commit | 05a2fb19f722652c5d13be911b8ed45a264bbb40 (patch) | |
tree | 6ec44da3e02a756ac742e2410da412f15b201dfa /meta/classes/sanity.bbclass | |
parent | 4b09a1869895e4cd18e82b7d190fbfea3c7922af (diff) | |
download | openembedded-core-05a2fb19f722652c5d13be911b8ed45a264bbb40.tar.gz openembedded-core-05a2fb19f722652c5d13be911b8ed45a264bbb40.tar.bz2 openembedded-core-05a2fb19f722652c5d13be911b8ed45a264bbb40.zip |
image/image-prelink/image-mklibs/sanity: Drop pointless EXPORT_FUNCTIONS
I'm sick of seeing people adding to EXPORT_FUNCTIONS in these classes
when they clearly have no idea what it does.
Worse, these uses of it are all broken, the naming is incorrect and
they do nothing. Lets remove them and try and preserve any remaining
part of my sanity.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 69d6a246de..dd7fe4cdfb 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -25,8 +25,6 @@ def sanity_conf_update(fn, lines, version_var_name, new_version): with open(fn, "w") as f: f.write(''.join(lines)) -EXPORT_FUNCTIONS bblayers_conf_file sanity_conf_read sanity_conf_find_line sanity_conf_update - # Functions added to this variable MUST throw an exception (or sys.exit()) unless they # successfully changed LCONF_VERSION in bblayers.conf BBLAYERS_CONF_UPDATE_FUNCS += "oecore_update_bblayers" |