diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-24 16:59:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-27 23:54:51 +0000 |
commit | 9596082b50fd421d18d5bdcf7e631511d43c7e69 (patch) | |
tree | f90d08d9cbc8edc2362946ed85450b0d913ed4e7 /meta/classes-global/base.bbclass | |
parent | c450d38e6f23ad167afb4b969fcce37241b30b93 (diff) | |
download | poky-9596082b50fd421d18d5bdcf7e631511d43c7e69.tar.gz |
base: Drop do_package base definition
I can't see how anyone would be using this very old package function definition
since package.bbclass is always inherited in modern OE. All it seems to do
is waste CPU cycles. Drop it and it's associated EXPORT_FUNCTIONS entry.
(From OE-Core rev: 56f7aa4cc0256aff96a1d720bd1931ea9a9bac8a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-global/base.bbclass')
-rw-r--r-- | meta/classes-global/base.bbclass | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/classes-global/base.bbclass b/meta/classes-global/base.bbclass index 8203f54519..c81aa51ef3 100644 --- a/meta/classes-global/base.bbclass +++ b/meta/classes-global/base.bbclass | |||
@@ -381,10 +381,6 @@ base_do_install() { | |||
381 | : | 381 | : |
382 | } | 382 | } |
383 | 383 | ||
384 | base_do_package() { | ||
385 | : | ||
386 | } | ||
387 | |||
388 | addtask build after do_populate_sysroot | 384 | addtask build after do_populate_sysroot |
389 | do_build[noexec] = "1" | 385 | do_build[noexec] = "1" |
390 | do_build[recrdeptask] += "do_deploy" | 386 | do_build[recrdeptask] += "do_deploy" |
@@ -786,4 +782,4 @@ python do_cleanall() { | |||
786 | do_cleanall[nostamp] = "1" | 782 | do_cleanall[nostamp] = "1" |
787 | 783 | ||
788 | 784 | ||
789 | EXPORT_FUNCTIONS do_fetch do_unpack do_configure do_compile do_install do_package | 785 | EXPORT_FUNCTIONS do_fetch do_unpack do_configure do_compile do_install |