aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2007-02-09 20:57:08 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2007-02-09 20:57:08 +0000
commit2c69ed48649f6980bf10bb7b28173937cb7a6543 (patch)
tree1dcc9cd67b2905c7ccdbf8dab9689b51cdd833dd /chapter06
parentaad7c5f511b5d4ed2bee4a993f54cb06f0b6ba21 (diff)
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
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/db.xml6
-rw-r--r--chapter06/ncurses.xml7
-rw-r--r--chapter06/readline.xml4
3 files changed, 4 insertions, 13 deletions
diff --git a/chapter06/db.xml b/chapter06/db.xml
index 367f85e65..ecedf09f9 100644
--- a/chapter06/db.xml
+++ b/chapter06/db.xml
@@ -107,11 +107,9 @@
</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_* \
- /usr/lib/libdb* /usr/include/db* &amp;&amp;
-chown -Rv root:root /usr/share/doc/db-&db-version;</userinput></screen>
+<screen><userinput>chown -Rv root:root /usr/share/doc/db-&db-version;</userinput></screen>
</sect2>
diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml
index ae9235fbd..b931834f9 100644
--- a/chapter06/ncurses.xml
+++ b/chapter06/ncurses.xml
@@ -89,11 +89,8 @@
<screen><userinput>make install</userinput></screen>
- <para>Give the Ncurses libraries execute permissions:</para>
-
-<screen><userinput>chmod -v 755 /usr/lib/*.&ncurses-version;</userinput></screen>
-
- <para>Fix a library that should not be executable:</para>
+ <para>Correct the permissions of a library that should not be executable:
+ </para>
<screen><userinput>chmod -v 644 /usr/lib/libncurses++w.a</userinput></screen>
diff --git a/chapter06/readline.xml b/chapter06/readline.xml
index f7d5d96f9..4bffc3648 100644
--- a/chapter06/readline.xml
+++ b/chapter06/readline.xml
@@ -78,10 +78,6 @@ sed -i '/{OLDSUFF}/c:' support/shlib-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>
<screen><userinput>mv -v /lib/lib{readline,history}.a /usr/lib</userinput></screen>