On 2/4/06, Greg Schafer <[EMAIL PROTECTED]> wrote:
> Dan Nicholson wrote:
>
> > After looking over Configure for a while, I would suggest this
> >
> > sed -i 's,/usr/include,/tools/include,g' Configure
>
> Hmmm, yes it should work. But I believe hints/linux.sh is the place to
> sort this stuff out. I just tried adding:
>
> usrinc="${prefix}/include"
>
> to hints/linux.sh and it fixed the strings, timeincl and usrinc params.
I've updated the perl-5.8.7-libc-1.patch to add this variable to
hints/linux.sh. Unless anyone is in disagreement, I think this updated patch
should go in the book.
I also opened a ticket. The new patch is attached there.
http://wiki.linuxfromscratch.org/lfs/ticket/1695
--
Dan
Submitted By: Anderson Lizardo <andersonlizardo(at)yahoo(dot)com(dot)br>
Date: 2003-09-06
Initial Package Version: 5.8.0
Origin: based on current LFS-BOOK patch (perl-5.8.0-libc-2.patch)
Description: this patch adapts some hard-wired paths to the C library.
It uses the $prefix variable to locate the correct libc and
headers.
diff -Naur perl-5.8.7.orig/hints/linux.sh perl-5.8.7/hints/linux.sh
--- perl-5.8.7.orig/hints/linux.sh 2005-04-04 13:08:31.000000000 -0700
+++ perl-5.8.7/hints/linux.sh 2006-02-05 07:30:36.173645248 -0800
@@ -52,9 +52,9 @@
# We don't use __GLIBC__ and __GLIBC_MINOR__ because they
# are insufficiently precise to distinguish things like
# libc-2.0.6 and libc-2.0.7.
-if test -L /lib/libc.so.6; then
- libc=`ls -l /lib/libc.so.6 | awk '{print $NF}'`
- libc=/lib/$libc
+if test -L ${prefix}/lib/libc.so.6; then
+ libc=`ls -l ${prefix}/lib/libc.so.6 | awk '{print $NF}'`
+ libc=${prefix}/lib/$libc
fi
# Configure may fail to find lstat() since it's a static/inline
@@ -315,3 +315,7 @@
;;
esac
EOCBU
+locincpth=""
+loclibpth=""
+glibpth="${prefix}/lib"
+usrinc="${prefix}/include"
--
http://linuxfromscratch.org/mailman/listinfo/lfs-dev
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page