summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2014-02-14 13:01:07 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-14 12:30:20 +0000
commit4cc0a43449818ad48203e3a6f2f46a5b28e09a9a (patch)
tree167c216fcccafaccfa58aa551114ba6ba13695ca
parent56a866ba51d0333014c48ee0489c3d67e28cea1a (diff)
downloadpoky-4cc0a43449818ad48203e3a6f2f46a5b28e09a9a.tar.gz
package_*.bbclass: remove references to the old bash indexing routines
Package indexing is done in python and package-index.bb uses the new routines. (From OE-Core rev: 2ab1a2bccfbb4ed90fe3b877d1be80817ba32099) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/package_deb.bbclass1
-rw-r--r--meta/classes/package_ipk.bbclass1
-rw-r--r--meta/classes/package_rpm.bbclass1
3 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass
index a0a31bd0f6..b9d797833a 100644
--- a/meta/classes/package_deb.bbclass
+++ b/meta/classes/package_deb.bbclass
@@ -309,6 +309,5 @@ do_package_write_deb[umask] = "022"
309addtask package_write_deb before do_package_write after do_packagedata do_package 309addtask package_write_deb before do_package_write after do_packagedata do_package
310 310
311 311
312PACKAGEINDEXES += "[ ! -e ${DEPLOY_DIR_DEB} ] || package_update_index_deb;"
313PACKAGEINDEXDEPS += "dpkg-native:do_populate_sysroot" 312PACKAGEINDEXDEPS += "dpkg-native:do_populate_sysroot"
314PACKAGEINDEXDEPS += "apt-native:do_populate_sysroot" 313PACKAGEINDEXDEPS += "apt-native:do_populate_sysroot"
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass
index 516ec4b3d2..7cf2c8af2d 100644
--- a/meta/classes/package_ipk.bbclass
+++ b/meta/classes/package_ipk.bbclass
@@ -255,6 +255,5 @@ do_package_write_ipk[cleandirs] = "${PKGWRITEDIRIPK}"
255do_package_write_ipk[umask] = "022" 255do_package_write_ipk[umask] = "022"
256addtask package_write_ipk before do_package_write after do_packagedata do_package 256addtask package_write_ipk before do_package_write after do_packagedata do_package
257 257
258PACKAGEINDEXES += "[ ! -e ${DEPLOY_DIR_IPK} ] || package_update_index_ipk;"
259PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot" 258PACKAGEINDEXDEPS += "opkg-utils-native:do_populate_sysroot"
260PACKAGEINDEXDEPS += "opkg-native:do_populate_sysroot" 259PACKAGEINDEXDEPS += "opkg-native:do_populate_sysroot"
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass
index 82ea187479..f267b8a4cb 100644
--- a/meta/classes/package_rpm.bbclass
+++ b/meta/classes/package_rpm.bbclass
@@ -734,6 +734,5 @@ do_package_write_rpm[cleandirs] = "${PKGWRITEDIRRPM}"
734do_package_write_rpm[umask] = "022" 734do_package_write_rpm[umask] = "022"
735addtask package_write_rpm before do_package_write after do_packagedata do_package 735addtask package_write_rpm before do_package_write after do_packagedata do_package
736 736
737PACKAGEINDEXES += "[ ! -e ${DEPLOY_DIR_RPM} ] || package_update_index_rpm;"
738PACKAGEINDEXDEPS += "rpm-native:do_populate_sysroot" 737PACKAGEINDEXDEPS += "rpm-native:do_populate_sysroot"
739PACKAGEINDEXDEPS += "createrepo-native:do_populate_sysroot" 738PACKAGEINDEXDEPS += "createrepo-native:do_populate_sysroot"