diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2012-09-11 18:58:03 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2012-09-11 19:21:30 +0200 |
commit | d010c0650b8331d97e5cf5681930f73da7de2d29 (patch) | |
tree | fdd6a9ccc4a63c9dc7749975cd8d11ab1ca4fff9 /meta-oe/recipes-navigation | |
parent | 85d9bb493173a0c534cd2753f38a7b06f3f03ae2 (diff) | |
download | meta-openembedded-d010c0650b8331d97e5cf5681930f73da7de2d29.tar.gz |
mcnavi: fix do_configure_prepend to be reentrant
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-navigation')
-rw-r--r-- | meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb b/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb index f4d594fd5..35c304c5c 100644 --- a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb +++ b/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | |||
@@ -4,6 +4,8 @@ LICENSE = "GPLv3" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a" |
5 | DEPENDS = "ecore evas imlib2 gpsd edje edje-native mysql5" | 5 | DEPENDS = "ecore evas imlib2 gpsd edje edje-native mysql5" |
6 | 6 | ||
7 | PR = "r1" | ||
8 | |||
7 | SRC_URI = "http://www.gps-routes.info/debian/pool/main/m/mcnavi/mcnavi_${PV}.tar.gz" | 9 | SRC_URI = "http://www.gps-routes.info/debian/pool/main/m/mcnavi/mcnavi_${PV}.tar.gz" |
8 | SRC_URI[md5sum] = "acc07debcdb3ef448b95e6a6cfcf53d8" | 10 | SRC_URI[md5sum] = "acc07debcdb3ef448b95e6a6cfcf53d8" |
9 | SRC_URI[sha256sum] = "d3ce1f5901f13985d877b2b6ad06b64094ba43a4e13cbfe06c7cb2f1abdda309" | 11 | SRC_URI[sha256sum] = "d3ce1f5901f13985d877b2b6ad06b64094ba43a4e13cbfe06c7cb2f1abdda309" |
@@ -12,7 +14,7 @@ S = "${WORKDIR}/${PN}" | |||
12 | 14 | ||
13 | do_configure_prepend() { | 15 | do_configure_prepend() { |
14 | # for some reason our mysql_config returns just sysroot/include_dir while mysql.h is in include_dir/mysql | 16 | # for some reason our mysql_config returns just sysroot/include_dir while mysql.h is in include_dir/mysql |
15 | sed -i 's#`mysql_config --include`#`mysql_config --include`/mysql#g' ${S}/configure.ac | 17 | sed -i 's#`mysql_config --include`$#`mysql_config --include`/mysql#g' ${S}/configure.ac |
16 | } | 18 | } |
17 | 19 | ||
18 | inherit autotools | 20 | inherit autotools |