source:
patches/perl-5.8.8-libc_lib64-1.patch@
64eda1b
Last change on this file since 64eda1b was 69cde8d, checked in by , 19 years ago | |
---|---|
|
|
File size: 929 bytes |
-
hints/linux.sh
Submitted By: Thomas Pegg <thomasp at linuxfromscratch dot org> Date: 2005-10-27 Initial Package Version: 5.8.7 Origin: based on perl-5.8.7-libc-1.patch Description: this patch adapts some hard-wired paths to the C library and points it to use lib64 instead of lib. diff -uNr perl-5.8.0.orig/hints/linux.sh perl-5.8.0/hints/linux.sh
old new 51 51 # We don't use __GLIBC__ and __GLIBC_MINOR__ because they 52 52 # are insufficiently precise to distinguish things like 53 53 # libc-2.0.6 and libc-2.0.7. 54 if test -L /lib /libc.so.6; then55 libc=`ls -l /lib /libc.so.6 | awk '{print $NF}'`56 libc=/lib /$libc54 if test -L /lib64/libc.so.6; then 55 libc=`ls -l /lib64/libc.so.6 | awk '{print $NF}'` 56 libc=/lib64/$libc 57 57 fi 58 58 59 59 # Configure may fail to find lstat() since it's a static/inline
Note:
See TracBrowser
for help on using the repository browser.