diff options
-rw-r--r-- | chapter01/changelog.xml | 5 | ||||
-rw-r--r-- | chapter06/ncurses.xml | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index be6a4746a..9e62c5300 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,11 @@ <para>2007-07-24</para> <itemizedlist> <listitem> + <para>[dnicholson] - Fix the Ncurses' library install to remove a + symbolic link before writing a linker script to that location. + Reported by Lieven De Keyzer.</para> + </listitem> + <listitem> <para>[bdubbs] - Created LFS 6.3-rc-1.</para> </listitem> <listitem> diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml index a2092bdda..f3befe7d4 100644 --- a/chapter06/ncurses.xml +++ b/chapter06/ncurses.xml @@ -128,7 +128,8 @@ ln -sfv libncurses++w.a /usr/lib/libncurses++.a</userinput></screen> <filename class="libraryfile">-lcurses</filename> at build time are still buildable:</para> -<screen><userinput>echo "INPUT(-lncursesw)" >/usr/lib/libcursesw.so +<screen><userinput>rm -vf /usr/lib/libcursesw.so +echo "INPUT(-lncursesw)" >/usr/lib/libcursesw.so ln -sfv libncurses.so /usr/lib/libcurses.so ln -sfv libncursesw.a /usr/lib/libcursesw.a ln -sfv libncurses.a /usr/lib/libcurses.a</userinput></screen> |