diff options
-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 7e1f3f0325..856858c436 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -1065,7 +1065,7 @@ PACKAGEFUNCS ?= "perform_packagecopy \ | |||
1065 | package_depchains \ | 1065 | package_depchains \ |
1066 | emit_pkgdata" | 1066 | emit_pkgdata" |
1067 | 1067 | ||
1068 | python package_do_package () { | 1068 | python do_package () { |
1069 | packages = (bb.data.getVar('PACKAGES', d, True) or "").split() | 1069 | packages = (bb.data.getVar('PACKAGES', d, True) or "").split() |
1070 | if len(packages) < 1: | 1070 | if len(packages) < 1: |
1071 | bb.debug(1, "No packages to build, skipping do_package") | 1071 | bb.debug(1, "No packages to build, skipping do_package") |
@@ -1110,8 +1110,6 @@ do_package_write[noexec] = "1" | |||
1110 | do_build[recrdeptask] += "do_package_write" | 1110 | do_build[recrdeptask] += "do_package_write" |
1111 | addtask package_write before do_build after do_package | 1111 | addtask package_write before do_build after do_package |
1112 | 1112 | ||
1113 | EXPORT_FUNCTIONS do_package do_package_write | ||
1114 | |||
1115 | # | 1113 | # |
1116 | # Helper functions for the package writing classes | 1114 | # Helper functions for the package writing classes |
1117 | # | 1115 | # |