aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZack Winkles <winkie@linuxfromscratch.org>2004-05-12 18:48:16 +0000
committerZack Winkles <winkie@linuxfromscratch.org>2004-05-12 18:48:16 +0000
commit26b1701ea34878445084c047cd8232008d132454 (patch)
treeef4bf20b54ff64fb22b1d6f7a7578354d400e6ff
parent1ba42076b0ccf4c68a511f5de988d2eae4c2fa98 (diff)
Shortened the sed used on gzexe.in
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3557 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.xml3
-rw-r--r--chapter06/gzip.xml3
2 files changed, 4 insertions, 2 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 71356097f..86df929d9 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -94,6 +94,9 @@ first a summary, then a detailed log.</para>
</itemizedlist>
</listitem>
+<listitem><para>May 12th, 2004 [winkie]: Shorten the <quote>sed</quote> used
+on Gzip's <filename>gzexe.in</filename> file.</para></listitem>
+
<listitem><para>May 12th, 2004 [winkie]: Fixed Coreutils testsuite execution.
</para></listitem>
diff --git a/chapter06/gzip.xml b/chapter06/gzip.xml
index 6294e6906..3b609ac7d 100644
--- a/chapter06/gzip.xml
+++ b/chapter06/gzip.xml
@@ -32,8 +32,7 @@ GCC, Glibc, Grep, Make, Sed.</para>
the location of the binary, the following command ensures that the new
location gets placed into the script:</para>
-<screen><userinput>cp gzexe.in{,.backup}
-sed 's%"BINDIR"%/bin%' gzexe.in.backup &gt; gzexe.in</userinput></screen>
+<screen><userinput>sed -i 's%"BINDIR"%/bin%' gzexe.in</userinput></screen>
<para>Compile the package:</para>