diff --git a/chapter06/file.xml b/chapter06/file.xml
index c9fbe0e6f..477da733c 100644
--- a/chapter06/file.xml
+++ b/chapter06/file.xml
@@ -51,10 +51,28 @@
mkdir build
pushd build
- ../configure
+ ../configure --disable-bzlib \
+ --disable-libseccomp \
+ --disable-xzlib \
+ --disable-zlib
make
popd
+
+ The meaning of the new configure option:
+
+
+ --disable-*
+
+ The configuration script attempt to use some packages from
+ the host distribution if the corresponding library files exist.
+ It may cause compilation failure if a library file exists, but
+ the corresponding header files do not exist. The options prevent
+ to use the packages from the host.
+
+
+
+
Prepare File for compilation:
./configure --prefix=/usr --host=$LFS_TGT --build=$(./config.guess)