diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 39fc31101..dcdd91e84 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -108,6 +108,10 @@ the ldconfig and ldd programs anymore; Glibc-2.2.1 comes with good
working versions.
+
+Chapter 6: Changed the procps installation from sed'ing to an easier way.
+
+
Chapter 6: Added the creation of the lex symlink to the flex
installation.
diff --git a/chapter06/procps-exp.xml b/chapter06/procps-exp.xml
index f08fe8383..0b5a00c2c 100644
--- a/chapter06/procps-exp.xml
+++ b/chapter06/procps-exp.xml
@@ -2,12 +2,11 @@
Command explanations
-sed "s/XConsole/#XConsole/" Makefile | make -f -:
-This will comment out the XConsole variable in the Makefile and pipe the
-output of sed (the modified Makefile) directly to the make program. This
-is an alternate and more efficient way to direct the output to a file
-and tell make to use that alternate file. The XConsole build is disabled
-because it can't be build yet because we don't have X installed yet.
+make XSCPT='' install:
+This will set the Makefile variable XSCPT to an empty value so that
+the XConsole installation is disabled. Otherwise "Make install" tries to
+copy the file XConsole to /usr/X11R6/bin.
+And that directory does not exist, because X is not installed yet.
diff --git a/chapter06/procps-inst.xml b/chapter06/procps-inst.xml
index 917def8c5..f89712ad0 100644
--- a/chapter06/procps-inst.xml
+++ b/chapter06/procps-inst.xml
@@ -7,9 +7,8 @@ Install Procps by running the following commands:
- sed "s/XConsole/#XConsole/" Makefile | make -f -
- &&
- sed "s/XConsole/#XConsole/" Makefile | make -f - install
+ make &&
+ make XSCPT='' install
&&
mv /usr/bin/kill /bin
diff --git a/index.xml b/index.xml
index 066bc338e..32d807058 100644
--- a/index.xml
+++ b/index.xml
@@ -4,7 +4,7 @@
-
+