diff options
Diffstat (limited to 'classes/debian.bbclass')
-rw-r--r-- | classes/debian.bbclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/classes/debian.bbclass b/classes/debian.bbclass index a0c78a25f4..a38f10d629 100644 --- a/classes/debian.bbclass +++ b/classes/debian.bbclass @@ -4,11 +4,13 @@ STAGING_PKGMAPS_DIR = "${STAGING_DIR}/pkgmaps/debian" # We therefore have to make sure we build all runtime packages # before building the current package to make the packages runtime # depends are correct -BUILD_ALL_DEPS = "1" - +# # Better expressed as ensure all RDEPENDS package before we package # This means we can't have circular RDEPENDS/RRECOMMENDS -do_package_write[rdeptask] = "do_package" +do_package_write_ipk[rdeptask] = "do_package" +do_package_write_deb[rdeptask] = "do_package" +do_package_write_tar[rdeptask] = "do_package" +do_package_write_rpm[rdeptask] = "do_package" python debian_package_name_hook () { import glob, copy, stat, errno, re |