diff options
-rw-r--r-- | db/db3_3.2.9.oe | 3 | ||||
-rw-r--r-- | gcc/gcc-cross_3.3.3.oe | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/db/db3_3.2.9.oe b/db/db3_3.2.9.oe index c95cd513f2..c6d2d0b957 100644 --- a/db/db3_3.2.9.oe +++ b/db/db3_3.2.9.oe @@ -84,7 +84,8 @@ do_install () { done } -python do_package_prepend() { +python do_package() { if oe.data.getVar('DEBIAN_NAMES', d, 1): oe.data.setVar('PKG_${PN}', 'libdb3', d) + oe.build.exec_func('package_do_package', d) } diff --git a/gcc/gcc-cross_3.3.3.oe b/gcc/gcc-cross_3.3.3.oe index 4aae2b6eaf..0a7679b933 100644 --- a/gcc/gcc-cross_3.3.3.oe +++ b/gcc/gcc-cross_3.3.3.oe @@ -72,9 +72,10 @@ do_stage_append () { rm -rf ${CROSS_DIR}/share } -python do_package_prepend() { +python do_package() { if oe.data.getVar('DEBIAN_NAMES', d, 1): oe.data.setVar('PKG_libgcc', 'libgcc1', d) + oe.build.exec_func('package_do_package', d) } do_install () { |