aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/gawk-inst.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-03-17 17:08:01 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-03-17 17:08:01 +0000
commitf88a4aebfba5b8bcfed586ec0489bfa8ff438302 (patch)
tree5b7cd5eb544425a96a94ef16aa540ff138a93ae8 /chapter05/gawk-inst.xml
parent53b4ec1e0129638f1f0e7a4ed7de04f17f0a8d79 (diff)
no cd necessary
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1725 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gawk-inst.xml')
-rw-r--r--chapter05/gawk-inst.xml14
1 files changed, 6 insertions, 8 deletions
diff --git a/chapter05/gawk-inst.xml b/chapter05/gawk-inst.xml
index e07c64089..bdbb93a5a 100644
--- a/chapter05/gawk-inst.xml
+++ b/chapter05/gawk-inst.xml
@@ -7,11 +7,10 @@ following commands can be used in this case. Note that these commands
can also be used for other glibc versions so if you aren't sure, then
use the first version.</para>
-<para><screen><userinput>cd awklib &amp;&amp;
-cp Makefile.in Makefile.in.backup &amp;&amp;
+<para><screen><userinput>cp awklib/Makefile.in awklib/Makefile.in.backup &amp;&amp;
sed -e '/^datadir/s/awk/gawk/' \
--e '/^libexecdir/s%/awk%%' Makefile.in.backup &gt; Makefile.in &amp;&amp;
-cd .. &amp;&amp;
+-e '/^libexecdir/s%/awk%%' awklib/Makefile.in.backup \
+&nbsp;&nbsp;&nbsp;&gt; awklib/Makefile.in &amp;&amp;
export CPPFLAGS=-Dre_max_failures=re_max_failures2 &amp;&amp;
./configure --prefix=$LFS/usr --disable-nls \
&nbsp;&nbsp;&nbsp;--libexecdir=$LFS/usr/bin &amp;&amp;
@@ -22,11 +21,10 @@ make install</userinput></screen></para>
<para>If you are using a newer glibc version (2.2.x), you can use the
following commands to install Gawk:</para>
-<para><screen><userinput>cd awklib &amp;&amp;
-cp Makefile.in Makefile.in.backup &amp;&amp;
+<para><screen><userinput>cp awklib/Makefile.in awklib/Makefile.in.backup &amp;&amp;
sed -e '/^datadir/s/awk/gawk/' \
--e '/^libexecdir/s%/awk%%' Makefile.in.backup &gt; Makefile.in &amp;&amp;
-cd .. &amp;&amp;
+-e '/^libexecdir/s%/awk%%' awklib/Makefile.in.backup \
+&nbsp;&nbsp;&nbsp;&gt; awklib/Makefile.in &amp;&amp;
./configure --prefix=$LFS/usr --disable-nls \
&nbsp;&nbsp;&nbsp;--libexecdir=$LFS/usr/bin &amp;&amp;
make LDFLAGS=-static &amp;&amp;