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.14.1.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.14.1.bb')
-rw-r--r-- | recipes/gettext/gettext_0.14.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/gettext/gettext_0.14.1.bb b/recipes/gettext/gettext_0.14.1.bb index 9c020f34c7..30fb92d351 100644 --- a/recipes/gettext/gettext_0.14.1.bb +++ b/recipes/gettext/gettext_0.14.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "The GNU internationalization library." HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" SECTION = "libs" LICENSE = "GPL" -PR = "r9" +PR = "r10" DEPENDS = "virtual/libiconv" PROVIDES = "virtual/libintl" @@ -10,6 +10,7 @@ SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ file://gettext-vpath.patch;patch=1;pnum=1 \ file://fixchicken.patch;patch=1;pnum=1 \ file://linklib_from_0.17.patch;patch=1 \ + file://gettext-autoconf-lib-link-no-L.patch;patch=1 \ file://getline.m4.patch;patch=1 \ file://disable_java.patch;patch=1" |