Remove some chmod commands as newer upstream releases mean they are no longer necessary. Fixes #1953.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7918 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Matthew Burgess 2007-02-09 20:57:08 +00:00
parent aad7c5f511
commit 2c69ed4864
4 changed files with 10 additions and 13 deletions

View File

@ -39,6 +39,12 @@
<listitem> <listitem>
<para>2007-02-09</para> <para>2007-02-09</para>
<itemizedlist> <itemizedlist>
<listitem>
<para>[matthew] - Remove some <command>chmod</command> and
<command>chown</command> commands from DB, NCurses and Readline as
they are no longer required with recent upstream versions. Fixes
<ulink url="&lfs-ticket-root;1953">#1953</ulink></para>
</listitem>
<listitem> <listitem>
<para>[matthew] - Upgrade to Udev-105. Fixes <para>[matthew] - Upgrade to Udev-105. Fixes
<ulink url="&lfs-ticket-root;1949">#1949</ulink></para> <ulink url="&lfs-ticket-root;1949">#1949</ulink></para>

View File

@ -107,11 +107,9 @@
</variablelist> </variablelist>
<para>Fix the ownerships of the installed files:</para> <para>Fix the ownership of the installed documentation:</para>
<screen><userinput>chown -v root:root /usr/bin/db_* \ <screen><userinput>chown -Rv root:root /usr/share/doc/db-&db-version;</userinput></screen>
/usr/lib/libdb* /usr/include/db* &amp;&amp;
chown -Rv root:root /usr/share/doc/db-&db-version;</userinput></screen>
</sect2> </sect2>

View File

@ -89,11 +89,8 @@
<screen><userinput>make install</userinput></screen> <screen><userinput>make install</userinput></screen>
<para>Give the Ncurses libraries execute permissions:</para> <para>Correct the permissions of a library that should not be executable:
</para>
<screen><userinput>chmod -v 755 /usr/lib/*.&ncurses-version;</userinput></screen>
<para>Fix a library that should not be executable:</para>
<screen><userinput>chmod -v 644 /usr/lib/libncurses++w.a</userinput></screen> <screen><userinput>chmod -v 644 /usr/lib/libncurses++w.a</userinput></screen>

View File

@ -78,10 +78,6 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
<screen><userinput>make install</userinput></screen> <screen><userinput>make install</userinput></screen>
<para>Give Readline's dynamic libraries more appropriate permissions:</para>
<screen><userinput>chmod -v 755 /lib/lib{readline,history}.so*</userinput></screen>
<para>Now move the static libraries to a more appropriate location:</para> <para>Now move the static libraries to a more appropriate location:</para>
<screen><userinput>mv -v /lib/lib{readline,history}.a /usr/lib</userinput></screen> <screen><userinput>mv -v /lib/lib{readline,history}.a /usr/lib</userinput></screen>