From patchwork Mon Oct 1 14:38:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [meta-oe,3/6] azy: fix do_configure Date: Mon, 01 Oct 2012 14:38:47 -0000 From: Martin Jansa X-Patchwork-Id: 37533 Message-Id: To: openembedded-devel@lists.openembedded.org * something changed in override/prepend expansion and azy-native now had do_configure_prepend applied too Signed-off-by: Martin Jansa --- meta-efl/recipes-efl/efl/azy_svn.bb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/meta-efl/recipes-efl/efl/azy_svn.bb b/meta-efl/recipes-efl/efl/azy_svn.bb index 0b333ae..a7889d6 100644 --- a/meta-efl/recipes-efl/efl/azy_svn.bb +++ b/meta-efl/recipes-efl/efl/azy_svn.bb @@ -12,16 +12,17 @@ BBCLASSEXTEND = "native" EXTRA_OECONF += " --disable-mysql-tests" -do_configure_prepend() { +do_configure_class-target() { sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am sed -i "s#\$(top_builddir)/src/bin/azy_parser -eHn -m#${STAGING_BINDIR_NATIVE}/azy_parser -eHn -m#g" ${S}/src/tests/identi.ca/Makefile.am + efl_do_configure } -do_configure_virtclass-native() { +do_configure_class-native() { efl_do_configure } -do_install_append_virtclass-native() { +do_install_append_class-native() { install -d ${D}/${bindir} install -m 0755 ${S}/src/bin/lemon ${D}/${bindir} }