diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-03-27 15:01:41 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-27 13:26:37 +0100 |
commit | 21a314e030477c4f82264b18553d4ded832cff62 (patch) | |
tree | 8485d00fe0f861237974ef3474354c9a7da74342 /meta/recipes-sato/pimlico | |
parent | 401129c5fcbc04afcb8a31d2dfa3584478d88a74 (diff) | |
download | poky-21a314e030477c4f82264b18553d4ded832cff62.tar.gz |
contacts 0.9: failed to build
contacts_0.9.bb failed to build since lacks of:
* SRC_URI[md5sum] or SRC_URI[sha256sum]
* LIC_FILES_CHKSUM
And an indent error in Makefile.am.
Fix these problems at the moment, maybe we should remove this old
version recipe since there is a contacts_git.bb
[YOCTO #2178]
(From OE-Core rev: d60b918186cadde05f2cde5b64d5b593ee0a6aba)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/pimlico')
-rw-r--r-- | meta/recipes-sato/pimlico/contacts_0.9.bb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/meta/recipes-sato/pimlico/contacts_0.9.bb b/meta/recipes-sato/pimlico/contacts_0.9.bb index 84fd941fd9..2b638bf233 100644 --- a/meta/recipes-sato/pimlico/contacts_0.9.bb +++ b/meta/recipes-sato/pimlico/contacts_0.9.bb | |||
@@ -1,5 +1,18 @@ | |||
1 | require contacts.inc | 1 | require contacts.inc |
2 | 2 | ||
3 | PR = "r4" | 3 | PR = "r5" |
4 | 4 | ||
5 | SRC_URI =+ "http://pimlico-project.org/sources/${BPN}/${BPN}-${PV}.tar.gz" | 5 | SRC_URI =+ "http://pimlico-project.org/sources/${BPN}/${BPN}-${PV}.tar.gz" |
6 | |||
7 | SRC_URI[md5sum] = "aab5affbf93d6fa7b978b323a8d44de0" | ||
8 | SRC_URI[sha256sum] = "9cacec98f8123993033aaa255f3f4c04c86a1be65e487dd21f0aaa54384a6f6d" | ||
9 | |||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
11 | file://src/contacts-main.h;endline=18;md5=0371af46fbc72e33575e0072dca5fb19 \ | ||
12 | file://src/contacts-dbus.c;endline=18;md5=e4da9ac1a0539fafc7df431010904fd5 \ | ||
13 | file://src/contacts-gtk.c;endline=21;md5=1c2e3f55b215635eff4ba76f7696f8ee" | ||
14 | |||
15 | do_configure_prepend () { | ||
16 | # It used 8 spaces to instead of a tab, but it doesn't work for us | ||
17 | sed -i 's/^ $(MAKE) dist distdir=/\t$(MAKE) dist distdir/' Makefile.am | ||
18 | } | ||