diff options
-rw-r--r-- | chapter01/changelog.xml | 8 | ||||
-rw-r--r-- | chapter06/bin86-inst.xml | 3 | ||||
-rw-r--r-- | chapter06/bin86.xml | 1 | ||||
-rw-r--r-- | index.xml | 1 |
4 files changed, 12 insertions, 1 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. diff --git a/chapter06/bin86-inst.xml b/chapter06/bin86-inst.xml index e4d83eaef..5cfabbb7c 100644 --- a/chapter06/bin86-inst.xml +++ b/chapter06/bin86-inst.xml @@ -7,7 +7,8 @@ Install Bin86 by running the following commands: <blockquote><literallayout> <userinput>make &&</userinput> - <userinput>make PREFIX=/usr install</userinput> + <userinput>make INSTALL_OPTS="-m 755" + PREFIX=/usr install</userinput> </literallayout></blockquote> </sect2> diff --git a/chapter06/bin86.xml b/chapter06/bin86.xml index a31e9af84..1f4668dbc 100644 --- a/chapter06/bin86.xml +++ b/chapter06/bin86.xml @@ -2,6 +2,7 @@ <title>Installing Bin86</title> &c6-bin86-inst; +&c6-bin86-exp; &aa-bin86-desc; </sect1> @@ -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"> |