diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-02-04 19:43:46 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2011-02-04 19:43:46 +0000 |
commit | 3779a6e8700dab041edaa6805c4443af6ec330e4 (patch) | |
tree | f2e67019bf666e22858e82562c36ee19fd43ab58 /chapter06 | |
parent | f054fe85b9ac86dd6802c808e1ee7b711d248849 (diff) |
Upgrade to Glibc-2.13. Fixes #2827.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9457 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/glibc.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 8c4721020..7c8159272 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -84,6 +84,14 @@ sed -i "s|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=$DL -o|" \ scripts/test-installation.pl unset DL</userinput></screen> + <para>In addition, there is a bug in the + <filename>test-installation.pl</filename> script in that it tries to link + a test program to a library that isn't installed by + <command>make install</command>. Issue the following <command>sed</command> + command to fix it:</para> + + <screen><userinput remap="pre">sed -i -e 's/"db1"/& \&\& $name ne "nss_test1"/' scripts/test-installation.pl</userinput></screen> + <para>The <command>ldd</command> shell script contains Bash-specific syntax. Change its default program interpreter to <command>/bin/bash</command> in case another <command>/bin/sh</command> is installed as described in the |