diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-08-31 14:12:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-02 05:52:13 -0700 |
commit | 0f9820f9753400d7e9b588921cb394129282af18 (patch) | |
tree | 35ef75bb63e2fcb6ee8004e3ed6007258422f751 /meta/recipes-connectivity | |
parent | 6b8b0be91620ca87353a413442ed3923fe6c4fca (diff) | |
download | poky-0f9820f9753400d7e9b588921cb394129282af18.tar.gz |
ofono: Fix build on uclibc
It used O_CLOEXEC which is a GNU libc feature
so lets add the appropriate flag
(From OE-Core rev: bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/ofono/ofono_1.10.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/ofono/ofono_1.10.bb b/meta/recipes-connectivity/ofono/ofono_1.10.bb index 1aa137f17f..d150961be4 100644 --- a/meta/recipes-connectivity/ofono/ofono_1.10.bb +++ b/meta/recipes-connectivity/ofono/ofono_1.10.bb | |||
@@ -4,7 +4,7 @@ SRC_URI = "\ | |||
4 | ${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.bz2 \ | 4 | ${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.bz2 \ |
5 | file://ofono \ | 5 | file://ofono \ |
6 | " | 6 | " |
7 | PR = "r0" | 7 | PR = "r1" |
8 | 8 | ||
9 | SRC_URI[md5sum] = "dab284efb8cc4143d6f53d0fcc37b696" | 9 | SRC_URI[md5sum] = "dab284efb8cc4143d6f53d0fcc37b696" |
10 | SRC_URI[sha256sum] = "e7931ac0dbe165eb0e16a38b7cb4acca59b704f356ec13583d58027135e3efa5" | 10 | SRC_URI[sha256sum] = "e7931ac0dbe165eb0e16a38b7cb4acca59b704f356ec13583d58027135e3efa5" |
@@ -14,4 +14,4 @@ EXTRA_OECONF += "\ | |||
14 | --enable-test \ | 14 | --enable-test \ |
15 | ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \ | 15 | ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \ |
16 | " | 16 | " |
17 | 17 | CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE" | |