diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-16 21:03:06 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-12-16 21:10:58 +0100 |
commit | 833d36faf08ab08a1715e4a3094994aba8a2bd39 (patch) | |
tree | dd953c887a8754388d00307642465ad64da48cc1 /meta-efl/recipes-efl/efl | |
parent | 93f954c334777d542ee3a54634def14fe801f9d5 (diff) | |
download | meta-openembedded-833d36faf08ab08a1715e4a3094994aba8a2bd39.tar.gz |
azy: simplify do_configure
* probably because of
http://git.openembedded.org/bitbake/commit/?id=9fc98f96f0e0320beda0ce9546275a99336732c1
it now failed with
/OE/jansa-test/shr-core/tmp-eglibc/work/x86_64-linux/azy-native/2_1.0.0+svnr80969-r0/temp/run.do_configure.30731: line 88: efl_do_configure: command not found
ERROR: Function failed: do_configure (see /OE/jansa-test/shr-core/tmp-eglibc/work/x86_64-linux/azy-native/2_1.0.0+svnr80969-r0/temp/log.do_configure.30731 for further information)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/efl')
-rw-r--r-- | meta-efl/recipes-efl/efl/azy_svn.bb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta-efl/recipes-efl/efl/azy_svn.bb b/meta-efl/recipes-efl/efl/azy_svn.bb index a7889d69c..43f9b7df9 100644 --- a/meta-efl/recipes-efl/efl/azy_svn.bb +++ b/meta-efl/recipes-efl/efl/azy_svn.bb | |||
@@ -5,6 +5,8 @@ LICENSE = "LGPLv2.1+" | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" |
6 | 6 | ||
7 | PV = "1.0.0+svnr${SRCPV}" | 7 | PV = "1.0.0+svnr${SRCPV}" |
8 | PR = "r1" | ||
9 | |||
8 | SRCREV = "${EFL_SRCREV}" | 10 | SRCREV = "${EFL_SRCREV}" |
9 | 11 | ||
10 | # to provide native lemon binary | 12 | # to provide native lemon binary |
@@ -12,14 +14,10 @@ BBCLASSEXTEND = "native" | |||
12 | 14 | ||
13 | EXTRA_OECONF += " --disable-mysql-tests" | 15 | EXTRA_OECONF += " --disable-mysql-tests" |
14 | 16 | ||
15 | do_configure_class-target() { | 17 | do_configure_prepend_class-target() { |
16 | sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am | 18 | sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am |
17 | 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 | 19 | 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 |
18 | 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 | 20 | 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 |
19 | efl_do_configure | ||
20 | } | ||
21 | do_configure_class-native() { | ||
22 | efl_do_configure | ||
23 | } | 21 | } |
24 | 22 | ||
25 | do_install_append_class-native() { | 23 | do_install_append_class-native() { |