Parcourir la source

Remove extra ncurses symbolic link

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8244 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Dan Nichilson il y a 18 ans
Parent
commit
0014bff798
2 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. 5 0
      chapter01/changelog.xml
  2. 2 1
      chapter06/ncurses.xml

+ 5 - 0
chapter01/changelog.xml

@@ -39,6 +39,11 @@
     <listitem>
       <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>

+ 2 - 1
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)" &gt;/usr/lib/libcursesw.so
+<screen><userinput>rm -vf /usr/lib/libcursesw.so
+echo "INPUT(-lncursesw)" &gt;/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>