Author: bdubbs
Date: 2011-06-27 13:31:38 -0600 (Mon, 27 Jun 2011)
New Revision: 2305
Modified:
trunk/perl/perl-5.12.1-libc-1.patch
Log:
Fix an omitted change
Modified: trunk/perl/perl-5.12.1-libc-1.patch
===================================================================
--- trunk/perl/perl-5.12.1-libc-1.patch 2011-06-25 21:46:26 UTC (rev 2304)
+++ trunk/perl/perl-5.12.1-libc-1.patch 2011-06-27 19:31:38 UTC (rev 2305)
@@ -13,9 +13,10 @@
# 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 /lib/libc.so.6 | awk '{print $NF}'`
-- libc=/lib/$libc
++ libc=`ls -l ${prefix}/lib/libc.so.6 | awk '{print $NF}'`
+ libc=${prefix}/lib/$libc
fi
--
http://linuxfromscratch.org/mailman/listinfo/patches
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page