aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-02-10 15:56:45 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-02-10 15:56:45 +0000
commit5ca1b36bcbb8da4d203824e992f8fc4a7c4daf9a (patch)
treed2e4e8448b36fcbddeb6dfc66c15f7f65b67d6cc /chapter06
parent9d12a8a4e9b2f87df072443ecb93b552e9ac519d (diff)
Added a sed command to chapter 6-gzip to change the hard-coded
/usr/bin/gzip path to /bin/gzip git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1554 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/gzip-inst.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/chapter06/gzip-inst.xml b/chapter06/gzip-inst.xml
index 95440fa7b..57fd9a457 100644
--- a/chapter06/gzip-inst.xml
+++ b/chapter06/gzip-inst.xml
@@ -4,6 +4,8 @@
<para>Install Gzip by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr &amp;&amp;
+cp gzexe.in gzexe.in.backup &amp;&amp;
+sed 's%"BINDIR"%/bin%' gzexe.in.backup &gt; gzexe.in &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
cd /usr/bin &amp;&amp;