aboutsummaryrefslogtreecommitdiffstats
path: root/chapter01
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-05-06 22:59:55 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-05-06 22:59:55 +0000
commit3fea0f73322a1899f3b8680369940524f6405bd7 (patch)
tree90ddfb8a4ee41b160b0fa46549cff96a0f81d19b /chapter01
parentdcbd4000a882d12a2b4cb34121ad0719e3d17725 (diff)
Changed bin86's installation instruction from:
make PREFIX=/usr install to: make INSTALL_OPTS="-m 755" PREFIX=/usr install git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@587 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter01')
-rw-r--r--chapter01/changelog.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 4833446ff..413c0f181 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -178,6 +178,14 @@ and less of a pain to install.
</para></listitem>
<listitem><para>
+Chapter 6: Changed bin86's installation from "make PREFIX=/usr install"
+to "make INSTALL_OPTS="-m 755" PREFIX=/usr install". This will prevent
+install from invoking strip -s on the files. This fails because a
+couple of the installed files are shell scripts rather than programs,
+so they can't be stripped.
+</para></listitem>
+
+<listitem><para>
Chapter 7: Fixed the delays in the killproc function in the functions
script. Now, after kill, first check PIDs, then sleep 2 if needed. More
details can be read in the comments in the script itself.