From 245178dc423b3cc0fc64e66e791cdf869636434c Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 5 Nov 2008 06:25:02 +0100 Subject: [PATCH] glibc: add /lib32 and /usr/lib32 into ld.so.conf for x86_64. --HG-- extra : convert_revision : 7b033e5ddb577944c05ca5f47a4f7e9a26ed080a --- templates/glibc.tmpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/glibc.tmpl b/templates/glibc.tmpl index 6ced2b6eab3..608d015fe39 100644 --- a/templates/glibc.tmpl +++ b/templates/glibc.tmpl @@ -56,5 +56,8 @@ post_install() $destdir/usr/bin/ldd cd $destdir && ln -s lib lib64 cd $destdir/usr && ln -s lib lib64 + # Add /lib32 and /usr/lib32 into ld.so.conf for now. + echo "/lib32" >> $destdir/etc/ld.so.conf + echo "/usr/lib32" >> $destdir/etc/ld.so.conf fi }