aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gettext/files
diff options
context:
space:
mode:
authorJeremy Puhlman <jpuhlman@mvista.com>2009-04-17 16:02:58 -0700
committerChris Larson <clarson@mvista.com>2009-08-19 20:57:35 -0700
commit27765f8a1d20ea7923fdfb667ca9ec7a9037e106 (patch)
tree2f71eaa7b634034828ec3f70bd709dc5f932c98e /recipes/gettext/files
parent9f35410c925716d58d8f8cff3cf5f8296894d1cd (diff)
downloadopenembedded-27765f8a1d20ea7923fdfb667ca9ec7a9037e106.tar.gz
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/files')
-rw-r--r--recipes/gettext/files/gettext-autoconf-lib-link-no-L.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes/gettext/files/gettext-autoconf-lib-link-no-L.patch b/recipes/gettext/files/gettext-autoconf-lib-link-no-L.patch
new file mode 100644
index 0000000000..2fe62c0e19
--- /dev/null
+++ b/recipes/gettext/files/gettext-autoconf-lib-link-no-L.patch
@@ -0,0 +1,12 @@
+--- gettext-0.17/autoconf-lib-link/m4/lib-link.m4~ 2009-04-17 15:12:30.000000000 -0700
++++ gettext-0.17/autoconf-lib-link/m4/lib-link.m4 2009-04-17 15:37:39.000000000 -0700
+@@ -267,6 +267,9 @@
+ fi
+ fi
+ fi
++ dnl Just let the compiler find the library, the compiler and user are smarter then this script
++ dnl when cross compiling and working with a relocated install.
++ found_dir=""
+ if test "X$found_dir" = "X"; then
+ for x in $LDFLAGS $LTLIB[]NAME; do
+ AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])