azy: fix do_configure
authorMartin Jansa <Martin.Jansa@gmail.com>
Wed, 26 Sep 2012 22:42:11 +0000 (00:42 +0200)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:23:40 +0000 (08:23 -0800)
* something changed in override/prepend expansion and azy-native now had do_configure_prepend applied too

(From meta-openembedded rev: d4e2e97ee42dbed730a821460fca0c36cd58487b)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
meta-openembedded/meta-efl/recipes-efl/efl/azy_svn.bb

index 0b333ae..a7889d6 100644 (file)
@@ -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}
 }