From: Daniel McGregor Date: Thu, 7 Jul 2016 14:41:54 +0000 (-0600) Subject: db: fix uninative build X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fdankm%2Fcft-patchelf;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git db: fix uninative build Add write permissions in the native cases. patchelf 0.9 no longer overwrites read-only files. Signed-off-by: Daniel McGregor --- diff --git a/meta/recipes-support/db/db_6.0.30.bb b/meta/recipes-support/db/db_6.0.30.bb index 018dd58f678..95c1a4398bf 100644 --- a/meta/recipes-support/db/db_6.0.30.bb +++ b/meta/recipes-support/db/db_6.0.30.bb @@ -117,6 +117,14 @@ do_install_append() { chown -R root:root ${D} } +do_install_append_class-native() { + chmod -R u+w ${D} +} + +do_install_append_class-nativesdk() { + chmod -R u+w ${D} +} + INSANE_SKIP_${PN} = "dev-so" INSANE_SKIP_${PN}-cxx = "dev-so"