diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-07-29 18:09:34 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-07-29 18:09:34 +0000 |
commit | e91410d9a204f04f60c3799418c36f3fb9074425 (patch) | |
tree | c563029e8e523370c2c3978b6654a99da69c4d11 | |
parent | 45aa421b3f063059bce88d64e62c3d0743e63c87 (diff) |
Changes several instruvions to add an -v switch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.5/BOOK@9018 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 15 | ||||
-rw-r--r-- | chapter05/glibc.xml | 2 | ||||
-rw-r--r-- | chapter06/glibc.xml | 2 | ||||
-rw-r--r-- | chapter06/mpfr.xml | 2 | ||||
-rw-r--r-- | chapter06/texinfo.xml | 2 |
5 files changed, 17 insertions, 6 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index dbc43763c..a9810f7c8 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,13 +36,24 @@ </listitem> --> + <listitem> + <para>2009-07-29</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Add -v to various commands. + Fixes + <ulink url="&lfs-ticket-root;2462">#2462</ulink>.</para> + </listitem> + </itemizedlist> + </listitem> + <listitem> <para>2009-07-28</para> <itemizedlist> <listitem> - <para>[matthew] - Correct the instructions for running - Module-Init-Tools' testsuite. Fixes + <para>[matthew] - Correct the commands for running Module-Init-Tools' + testsuite. Fixes <ulink url="&lfs-ticket-root;2468">#2468</ulink>.</para> </listitem> <listitem> diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml index e6738437f..fd0285a69 100644 --- a/chapter05/glibc.xml +++ b/chapter05/glibc.xml @@ -48,7 +48,7 @@ <para>Fix an error in the constants that get passed to the futex system call in some cases, causing certain pthread_mutex operations to fail:</para> -<screen><userinput remap="pre">cp nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S{,.orig} +<screen><userinput remap="pre">cp -v nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S{,.orig} sed -e 's/FUTEX_WAIT\( | FUTEX_CLOCK_REALTIME, reg\)/FUTEX_WAIT_BITSET\1/' \ <nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S.orig \ >nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S</userinput></screen> diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index f88922be7..70dec0a2e 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -68,7 +68,7 @@ Unpack the tarball from within the Glibc source directory:</para> <screen><userinput remap="pre">tar -xvf ../glibc-libidn-&glibc-version;.tar.bz2 -mv glibc-libidn-&glibc-version; libidn</userinput></screen> +mv -v glibc-libidn-&glibc-version; libidn</userinput></screen> <!-- This should have been fixed a long time ago. diff --git a/chapter06/mpfr.xml b/chapter06/mpfr.xml index 2c99e84f7..78f9b5b29 100644 --- a/chapter06/mpfr.xml +++ b/chapter06/mpfr.xml @@ -65,7 +65,7 @@ <para>Install the documentation:</para> <screen><userinput remap="install">make html -mkdir -p /usr/share/doc/mpfr-&mpfr-version; +mkdir -pv /usr/share/doc/mpfr-&mpfr-version; find . -name \*.html -type f -exec cp -v \{} /usr/share/doc/mpfr-&mpfr-version; \;</userinput></screen> </sect2> diff --git a/chapter06/texinfo.xml b/chapter06/texinfo.xml index 4f4a4e31c..a2c615caf 100644 --- a/chapter06/texinfo.xml +++ b/chapter06/texinfo.xml @@ -85,7 +85,7 @@ recreated, the following optional commands will accomplish the task:</para> <screen role="nodump"><userinput>cd /usr/share/info -rm dir +rm -v dir for f in * do install-info $f dir 2>/dev/null done</userinput></screen> |