diff --git a/chapter08/gawk.xml b/chapter08/gawk.xml
index cc9348d90..d8984b58e 100644
--- a/chapter08/gawk.xml
+++ b/chapter08/gawk.xml
@@ -59,15 +59,18 @@ su tester -c "PATH=$PATH make check"
Install the package:
-make LN='ln -f' install
+rm -f /usr/bin/gawk-&gawk-version;
+make install
- The meaning of the overridden make variable:
+ The meaning of the command:
- LN='ln -f'
+ rm -f /usr/bin/gawk-&gawk-version;
- This variable ensures that the previous hard link installed
+ The building system will not recreate the hard link
+ gawk-&gawk-version; if it already exists.
+ Remove it to ensure that the previous hard link installed
in is updated here.