diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2009-04-17 16:02:58 -0700 |
---|---|---|
committer | Chris Larson <clarson@mvista.com> | 2009-08-19 20:57:35 -0700 |
commit | 27765f8a1d20ea7923fdfb667ca9ec7a9037e106 (patch) | |
tree | 2f71eaa7b634034828ec3f70bd709dc5f932c98e /recipes/gettext/gettext_0.17.bb | |
parent | 9f35410c925716d58d8f8cff3cf5f8296894d1cd (diff) |
gettext: Correct autoconf-lib-link code to defer to the compiler's library search paths.
Ultimately we should have --with-<lib> and --without-<lib> for everything,
however if a recipie does not the suspect code wanders through the host system
searching for a working library. OE takes great pains to set that all up, lets
let it decide the right library.
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Chris Larson <clarson@mvista.com>
Diffstat (limited to 'recipes/gettext/gettext_0.17.bb')
-rw-r--r-- | recipes/gettext/gettext_0.17.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/gettext/gettext_0.17.bb b/recipes/gettext/gettext_0.17.bb index 29cd58a2d4..04dee4c4f2 100644 --- a/recipes/gettext/gettext_0.17.bb +++ b/recipes/gettext/gettext_0.17.bb @@ -2,7 +2,7 @@ DESCRIPTION = "The GNU internationalization library." HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" SECTION = "libs" LICENSE = "GPLv3" -PR = "r2" +PR = "r3" DEPENDS = "gettext-native virtual/libiconv ncurses expat" PROVIDES = "virtual/libintl" @@ -10,6 +10,7 @@ SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ file://autotools.patch;patch=1 \ file://wchar-uclibc.patch;patch=1 \ file://use_open_properly.patch;patch=1 \ + file://gettext-autoconf-lib-link-no-L.patch;patch=1 \ " SRC_URI_append_linux-uclibc = " file://gettext-error_print_progname.patch;patch=1" |