diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/glibc.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index ec6d10d1f..298480e7a 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -151,17 +151,18 @@ unset GCC_INCDIR</userinput></screen> <para>Generally a few tests do not pass. The test failures listed below are usually safe to ignore.</para> -<screen><userinput remap="test">case $(uname -m) in +<!-- Use remap="make" here to work around a jhalfs issue. --> +<screen><userinput remap="make">case $(uname -m) in i?86) ln -sfnv $PWD/elf/ld-linux.so.2 /lib ;; x86_64) ln -sfnv $PWD/elf/ld-linux-x86-64.so.2 /lib ;; -esac - -make check</userinput></screen> +esac</userinput></screen> <note><para>The symbolic link above is needed to run the tests at this stage of building in the chroot envirnment. It will be overwritten in the install phase below.</para></note> +<screen><userinput remap="test">make check</userinput></screen> + <para>You may see some test failures. The Glibc test suite is somewhat dependent on the host system. This is a list of the most common issues seen for some versions of LFS:</para> @@ -358,9 +359,9 @@ mkdir -pv $ZONEINFO/{posix,right} for tz in etcetera southamerica northamerica europe africa antarctica \ asia australasia backward pacificnew systemv; do - zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" ${tz} - zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" ${tz} - zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" ${tz} + zic -L /dev/null -d $ZONEINFO ${tz} + zic -L /dev/null -d $ZONEINFO/posix ${tz} + zic -L leapseconds -d $ZONEINFO/right ${tz} done cp -v zone.tab zone1970.tab iso3166.tab $ZONEINFO |