diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-05-05 22:10:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-10 09:56:18 +0100 |
commit | 3fbb7b5879c218e65d35bae038def64abb7bf529 (patch) | |
tree | 8bee97d662202c4c3900a27a766c4003b34fca99 /meta/recipes-connectivity/galago | |
parent | 630a645ed6fa1716e33c5f4e3d9499dcaf7b3707 (diff) | |
download | poky-3fbb7b5879c218e65d35bae038def64abb7bf529.tar.gz |
libgalago_0.5.2.bb: Fix compile for uclibc
uclibc targets may not have gettext but this package
still needs config.rpath during regenerating configury
so we provide it when libc is uclibc.
(From OE-Core rev: a5f71d8bfe794808cbe5e9e1f4a37ed4e87a15fb)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/galago')
-rw-r--r-- | meta/recipes-connectivity/galago/libgalago_0.5.2.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/galago/libgalago_0.5.2.bb b/meta/recipes-connectivity/galago/libgalago_0.5.2.bb index 6d9f76b860..3a476209af 100644 --- a/meta/recipes-connectivity/galago/libgalago_0.5.2.bb +++ b/meta/recipes-connectivity/galago/libgalago_0.5.2.bb | |||
@@ -18,3 +18,7 @@ PR = "r2" | |||
18 | inherit autotools pkgconfig gettext | 18 | inherit autotools pkgconfig gettext |
19 | 19 | ||
20 | EXTRA_OECONF = "--disable-tests --disable-check" | 20 | EXTRA_OECONF = "--disable-tests --disable-check" |
21 | |||
22 | do_configure_prepend_libc-uclibc() { | ||
23 | touch ${S}/config.rpath | ||
24 | } | ||