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:47:43 -0700 |
commit | bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14 (patch) | |
tree | 3e832b5eebaa4e5cddbff31204025faf7b68e46f /meta/recipes-connectivity | |
parent | 802a2ec822738fc383ae259231acf0303e7cc7ea (diff) | |
download | openembedded-core-bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14.tar.gz openembedded-core-bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14.tar.bz2 openembedded-core-bf9fa09109f172e85fab14dd3ad0cf22dbd7fd14.zip |
ofono: Fix build on uclibc
It used O_CLOEXEC which is a GNU libc feature
so lets add the appropriate flag
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
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 = "\ ${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.bz2 \ file://ofono \ " -PR = "r0" +PR = "r1" SRC_URI[md5sum] = "dab284efb8cc4143d6f53d0fcc37b696" SRC_URI[sha256sum] = "e7931ac0dbe165eb0e16a38b7cb4acca59b704f356ec13583d58027135e3efa5" @@ -14,4 +14,4 @@ EXTRA_OECONF += "\ --enable-test \ ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \ " - +CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE" |