diff options
Diffstat (limited to 'chapter06/glibc.xml')
-rw-r--r-- | chapter06/glibc.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 4f142cca4..c8847411a 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -60,7 +60,7 @@ of achieving a clean build.</para> threading libraries installed by Glibc. Unpack the tarball from within the Glibc source directory:</para> -<screen><userinput>tar -xf ../glibc-linuxthreads-&glibc-version;.tar.bz2</userinput></screen> +<screen><userinput>tar -xvf ../glibc-linuxthreads-&glibc-version;.tar.bz2</userinput></screen> <para>Glibc has two tests which fail when the running kernel is 2.6.11 or later. The problem has been determined to be with the tests themselves, not with the @@ -84,7 +84,7 @@ tests on x86 processors when compiled with GCC-&gcc-version;:</para> <para>The Glibc documentation recommends building Glibc outside of the source directory in a dedicated build directory:</para> -<screen><userinput>mkdir ../glibc-build +<screen><userinput>mkdir -v ../glibc-build cd ../glibc-build</userinput></screen> <para>Prepare Glibc for compilation:</para> @@ -177,7 +177,7 @@ instructions, instead of the <parameter>install-locales</parameter> target used above, will install the minimum set of locales necessary for the tests to run successfully:</para> -<screen><userinput>mkdir -p /usr/lib/locale +<screen><userinput>mkdir -pv /usr/lib/locale localedef -i de_DE -f ISO-8859-1 de_DE localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro localedef -i en_HK -f ISO-8859-1 en_HK @@ -256,7 +256,7 @@ will output the name of the time zone (e.g., Then create the <filename>/etc/localtime</filename> file by running:</para> -<screen><userinput>cp --remove-destination /usr/share/zoneinfo/<replaceable>[xxx]</replaceable> \ +<screen><userinput>cp -v --remove-destination /usr/share/zoneinfo/<replaceable>[xxx]</replaceable> \ /etc/localtime</userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> with the name of the time zone |