diff --git a/chapter08/automake.xml b/chapter08/automake.xml
index 4fc1bd277..5d7541049 100644
--- a/chapter08/automake.xml
+++ b/chapter08/automake.xml
@@ -53,11 +53,14 @@
make
- Using the -j4 make option speeds up the tests, even on systems with
- only one processor, due to internal delays in individual tests. To test
+ Using four parallel jobs speeds up the tests, even on systems with
+ less logical cores, due to internal delays in individual tests. To test
the results, issue:
-make -j4 check
+make -j$(($(nproc)>4?$(nproc):4)) check
+
+ Replace $((...)) with the number of
+ logical cores you want to use if you don't want to use all.
The test t/subobj.sh is known to fail.