diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 4833446ff..413c0f181 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -177,6 +177,14 @@ Chapter 6: Changed consoledata/tools to kbd, which is more actively developed, and less of a pain to install. + +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. + + 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 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:
make && - make PREFIX=/usr install + make INSTALL_OPTS="-m 755" + PREFIX=/usr install
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 @@ Installing Bin86 &c6-bin86-inst; +&c6-bin86-exp; &aa-bin86-desc; diff --git a/index.xml b/index.xml index 1eb123e39..3cf0dfe86 100644 --- a/index.xml +++ b/index.xml @@ -251,6 +251,7 @@ +