diff options
author | Jim Gifford <jim@linuxfromscratch.org> | 2004-12-06 18:24:50 +0000 |
---|---|---|
committer | Jim Gifford <jim@linuxfromscratch.org> | 2004-12-06 18:24:50 +0000 |
commit | 711166645184366f4d0b09b34cbbeebae9ae5cd3 (patch) | |
tree | 5b2bd518c7f1aa9608f315821daedb0be7f2c690 /chapter06/readline.xml | |
parent | 016b2bbd5d640c99ce05d9739419a2afea946c60 (diff) |
Updates to findutils, util-linux, and iproute2. More library changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4359 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/readline.xml')
-rw-r--r-- | chapter06/readline.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chapter06/readline.xml b/chapter06/readline.xml index 482c356a3..e437e3adc 100644 --- a/chapter06/readline.xml +++ b/chapter06/readline.xml @@ -53,6 +53,11 @@ sometimes will only show 33 characters on a line and then wrap to the next line. <screen><userinput>mv /lib/lib{readline,history}.a /usr/lib</userinput></screen> +<para>Now we will remove the old, .so files in /lib and relink them into /usr/lib.</para> + +<screen><userinput>rm /lib/lib{readline,history}.so +ln -sf ../../lib/libreadline.so.5 /usr/lib/libreadline.so +ln -sf ../../lib/libhistory.so.5 /usr/lib/libhistory.so</userinput></screen> </sect2> |