diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2007-07-26 16:53:02 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2007-07-26 16:53:02 +0000 |
commit | ff08e99098275a94eb7ce95e47aa04be67afc7b2 (patch) | |
tree | b967d48d0e308f8a2a233d82e04ad1313aa6748f | |
parent | 4b720c1b1eb779fb60e8de2fa79facdfb28a0a01 (diff) |
Adjust grep patteren in Ch. 6 gcc to only match desired output.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.3/BOOK@8251 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 10 | ||||
-rw-r--r-- | chapter06/readjusting.xml | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 9e62c5300..575e39095 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,6 +36,16 @@ </listitem> --> + <listitem> + <para>2007-07-26</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Adjust grep patteren in Ch. 6 gcc to only match + desired output.</para> + </listitem> + </itemizedlist> + </listitem> + <listitem> <para>2007-07-24</para> <itemizedlist> diff --git a/chapter06/readjusting.xml b/chapter06/readjusting.xml index 63d7a0dce..83cdf298f 100644 --- a/chapter06/readjusting.xml +++ b/chapter06/readjusting.xml @@ -73,7 +73,7 @@ readelf -l a.out | grep ': /lib'</userinput></screen> <para os="d">Now make sure that we're setup to use the correct startfiles:</para> -<screen os="e"><userinput>grep -o '/usr/lib.*/crt[1in].* .*' dummy.log</userinput></screen> +<screen os="e"><userinput>grep -o '/usr/lib.*/crt[1in].*succeeded' dummy.log</userinput></screen> <para os="f">If everything is working correctly, there should be no errors, and the output of the last command will be:</para> |