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
This commit is contained in:
Gerard Beekmans 2001-05-06 22:59:55 +00:00
parent dcbd4000a8
commit 3fea0f7332
4 changed files with 12 additions and 1 deletions

View File

@ -177,6 +177,14 @@ Chapter 6: Changed consoledata/tools to kbd, which is more actively developed,
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

View File

@ -7,7 +7,8 @@ Install Bin86 by running the following commands:
<blockquote><literallayout>
<userinput>make &amp;&amp;</userinput>
<userinput>make PREFIX=/usr install</userinput>
<userinput>make INSTALL_OPTS="-m 755"
PREFIX=/usr install</userinput>
</literallayout></blockquote>
</sect2>

View File

@ -2,6 +2,7 @@
<title>Installing Bin86</title>
&c6-bin86-inst;
&c6-bin86-exp;
&aa-bin86-desc;
</sect1>

View File

@ -251,6 +251,7 @@
<!ENTITY c6-libtool-inst SYSTEM "intel/chapter6/libtool-inst.xml">
<!ENTITY c6-bin86 SYSTEM "intel/chapter6/bin86.xml">
<!ENTITY c6-bin86-inst SYSTEM "intel/chapter6/bin86-inst.xml">
<!ENTITY c6-bin86-exp SYSTEM "intel/chapter6/bin86-exp.xml">
<!ENTITY c6-lilo SYSTEM "intel/chapter6/lilo.xml">
<!ENTITY c6-lilo-inst SYSTEM "intel/chapter6/lilo-inst.xml">
<!ENTITY c6-make SYSTEM "intel/chapter6/make.xml">