diff --git a/chapter07/createfiles.xml b/chapter07/createfiles.xml
index c55d40836..79fdaaf97 100644
--- a/chapter07/createfiles.xml
+++ b/chapter07/createfiles.xml
@@ -48,7 +48,7 @@
as well:
cat > /etc/hosts << EOF
-"127.0.0.1 localhost $(hostname)"
+127.0.0.1 localhost $(hostname)
::1 localhost
EOF
diff --git a/chapter08/bash.xml b/chapter08/bash.xml
index e2d32bba4..699a24e43 100644
--- a/chapter08/bash.xml
+++ b/chapter08/bash.xml
@@ -42,9 +42,9 @@
Prepare Bash for compilation:
-./configure --prefix=/usr \
+./configure --prefix=/usr \
--docdir=/usr/share/doc/bash-&bash-version; \
- --without-bash-malloc \
+ --without-bash-malloc \
--with-installed-readline
diff --git a/chapter08/gcc.xml b/chapter08/gcc.xml
index 840bddb03..82de879fa 100644
--- a/chapter08/gcc.xml
+++ b/chapter08/gcc.xml
@@ -121,28 +121,26 @@ su tester -c "PATH=$PATH make -k check"
url="&test-results;"/> and
.
-
-
+
+ Eight tests related to analyzer are known to fail.
+
+
+ Seven tests related to pr59063-2.c are known
+ to fail.
+
+
+ One test named asan_test.C is known to
+ fail.
+
+
+ In libstdc++, one test named 49745.cc is
+ known to fail because the header dependencies in glibc have have
+ changed.
In libstdc++, one numpunct test and six tests related to get_time are
known to fail. These are all because the locale definitions in glibc have
changed but libstdc++ does not currently support those changes.
-
-
-
A few unexpected failures cannot always be avoided. The GCC developers
are usually aware of these issues, but have not resolved them yet.
Unless the test results are vastly different from those at the above URL,
diff --git a/chapter08/glibc.xml b/chapter08/glibc.xml
index 2935c84af..675adf633 100644
--- a/chapter08/glibc.xml
+++ b/chapter08/glibc.xml
@@ -939,7 +939,7 @@ mkdir -pv /etc/ld.so.conf.d
libutil
- >Dummy library containing no functions. Previously contained
+ Dummy library containing no functions. Previously contained
code for standard
functions used in
many different Unix utilities. These functions are now in
libc
diff --git a/chapter08/strippingagain.xml b/chapter08/strippingagain.xml
index 825cd20e2..7692f6ce9 100644
--- a/chapter08/strippingagain.xml
+++ b/chapter08/strippingagain.xml
@@ -43,12 +43,11 @@
- save_usrlib="ld-linux-x86-64.so.2
+save_usrlib="ld-linux-x86-64.so.2
libc.so.6
- libpthread.so.6
- libthread_db.so
+ libthread_db.so.1
libquadmath.so.&libquadmath-version;
- libstdc++.so.6
+ libstdc++.so.&libstdcpp-version;
libitm.so.&libitm-version;
libatomic.so.&libatomic-version;"
@@ -64,13 +63,12 @@ for LIB in $save_usrlib; do
done
online_usrbin="bash find strip"
-online_usrlib="libbfd.so
- libdl.so.2
- libhistory.so
- libncursesw.so
- libm.so.6
- libreadline.so
- libz.so
+online_usrlib="libbfd-&binutils-version;.so
+ libhistory.so.&readline-version;
+ libncursesw.so.&ncurses-version;
+ libm.so.6
+ libreadline.so.&readline-version;
+ libz.so.&zlib-version;
$(cd /usr/lib; find libnss*.so* -type f)"
for BIN in $online_usrbin; do