Skip to content

Instantly share code, notes, and snippets.

@scottellis
Created April 18, 2011 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottellis/925006 to your computer and use it in GitHub Desktop.
Save scottellis/925006 to your computer and use it in GitHub Desktop.
OE perl-native patch for Ubuntu 11.04
diff --git perl-5.10.1/Configure.orig perl-5.10.1/Configure
old mode 100755
new mode 100644
index 01fa3c0..637ba32
--- perl-5.10.1/Configure.orig
+++ perl-5.10.1/Configure
@@ -1307,11 +1307,13 @@ loclibpth="/usr/local/lib /opt/local/lib /usr/gnu/lib"
loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
: general looking path for locating libraries
-glibpth="/lib /usr/lib $xlibpth"
+glibpth="/lib /usr/lib /lib64 /usr/lib64 $xlibpth"
glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
test -f /shlib/libc.so && glibpth="/shlib $glibpth"
test -d /usr/lib64 && glibpth="$glibpth /lib64 /usr/lib64 /usr/local/lib64"
+test -f /usr/lib/i386-linux-gnu/libc.so && glibpth="/usr/lib/i386-linux-gnu $glibpth"
+test -f /usr/lib/x86_64-linux-gnu/libc.so && glibpth="/usr/lib/x86_64-linux-gnu $glibpth"
: Private path used by Configure to find libraries. Its value
: is prepended to libpth. This variable takes care of special
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment