aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/ed-inst.xml2
-rw-r--r--chapter06/findutils-exp.xml2
-rw-r--r--chapter06/findutils-inst.xml4
-rw-r--r--chapter06/gawk-exp.xml2
-rw-r--r--chapter06/gawk-inst.xml2
-rw-r--r--chapter06/glibc-exp.xml2
-rw-r--r--chapter06/glibc-inst.xml2
-rw-r--r--chapter06/perl-exp.xml2
-rw-r--r--chapter06/perl-inst.xml2
-rw-r--r--chapter06/tar-inst.xml2
-rw-r--r--chapter06/vim-inst.xml4
11 files changed, 13 insertions, 13 deletions
diff --git a/chapter06/ed-inst.xml b/chapter06/ed-inst.xml
index 38ca3d528..4ffb7407f 100644
--- a/chapter06/ed-inst.xml
+++ b/chapter06/ed-inst.xml
@@ -12,7 +12,7 @@ days.</para>
<para>Install Ed by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../ed-&ed-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../ed-&ed-patch-version;.patch &amp;&amp;
./configure --prefix=/usr &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
diff --git a/chapter06/findutils-exp.xml b/chapter06/findutils-exp.xml
index d7eba25bb..174cf2db7 100644
--- a/chapter06/findutils-exp.xml
+++ b/chapter06/findutils-exp.xml
@@ -1,7 +1,7 @@
<sect2>
<title>Command explanations</title>
-<para><userinput>patch -Np1 -i ../findutils-4.1.patch</userinput>: This
+<para><userinput>patch -Np1 -i ../findutils-&findutils-patch-version;.patch</userinput>: This
patch is to fix some compilation errors by
avoiding a variable conflict and changing some bad syntax.</para>
diff --git a/chapter06/findutils-inst.xml b/chapter06/findutils-inst.xml
index b8c48bdf0..b32686595 100644
--- a/chapter06/findutils-inst.xml
+++ b/chapter06/findutils-inst.xml
@@ -7,7 +7,7 @@ commands.</para>
<para>Install Findutils by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-patch-version;.patch &amp;&amp;
./configure --prefix=/usr &amp;&amp;
make libexecdir=/usr/bin &amp;&amp;
make libexecdir=/usr/bin install</userinput></screen></para>
@@ -21,7 +21,7 @@ If you would rather be FHS compliant, you may wish to use another
location. The following commands use the database file
<filename>/var/lib/misc/locatedb</filename> which is FHS compliant.</para>
-<para><screen><userinput>patch -Np1 -i ../findutils-4.1.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-patch-version;.patch &amp;&amp;
./configure --prefix=/usr &amp;&amp;
make localstatedir=/var/lib/misc libexecdir=/usr/bin &amp;&amp;
make localstatedir=/var/lib/misc libexecdir=/usr/bin install</userinput></screen></para>
diff --git a/chapter06/gawk-exp.xml b/chapter06/gawk-exp.xml
index f76aa456c..47da69290 100644
--- a/chapter06/gawk-exp.xml
+++ b/chapter06/gawk-exp.xml
@@ -1,7 +1,7 @@
<sect2>
<title>Command explanations</title>
-<para><userinput>patch -Np1 -i ../gawk-&gawk-version;.patch:</userinput> This
+<para><userinput>patch -Np1 -i ../gawk-&gawk-patch-version;.patch:</userinput> This
patch alters the code that determines the location of the
<filename class="directory">libexec</filename> directory. This patch will
allow us to override it by passing <emphasis>--libexecdir</emphasis> to the
diff --git a/chapter06/gawk-inst.xml b/chapter06/gawk-inst.xml
index f480e1ea4..29c1b421f 100644
--- a/chapter06/gawk-inst.xml
+++ b/chapter06/gawk-inst.xml
@@ -17,7 +17,7 @@ class="directory">/usr/bin</filename> it'll run <userinput>rm -rf
<para>Install Gawk by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../gawk-&gawk-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../gawk-&gawk-patch-version;.patch &amp;&amp;
./configure --prefix=/usr --libexecdir=/usr/bin &amp;&amp;
make &amp;&amp;
make install</userinput></screen></para>
diff --git a/chapter06/glibc-exp.xml b/chapter06/glibc-exp.xml
index c3e474308..9c40d702e 100644
--- a/chapter06/glibc-exp.xml
+++ b/chapter06/glibc-exp.xml
@@ -1,7 +1,7 @@
<sect2>
<title>Command explanations</title>
-<para><userinput>patch -Np1 -i ../glibc-&glibc-version;.patch:</userinput>
+<para><userinput>patch -Np1 -i ../glibc-&glibc-patch-version;.patch:</userinput>
This patch converts all occurances of <filename>$(PERL)</filename> to
<filename>/usr/bin/perl</filename> in the
<filename>malloc/Makefile</filename> file. This is done because Glibc can't
diff --git a/chapter06/glibc-inst.xml b/chapter06/glibc-inst.xml
index 31b7bda77..caaacb802 100644
--- a/chapter06/glibc-inst.xml
+++ b/chapter06/glibc-inst.xml
@@ -26,7 +26,7 @@ is putting your system at very high risk.</para>
<para>Install Glibc by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../glibc-&glibc-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../glibc-&glibc-patch-version;.patch &amp;&amp;
touch /etc/ld.so.conf &amp;&amp;
mkdir ../glibc-build &amp;&amp;
cd ../glibc-build &amp;&amp;
diff --git a/chapter06/perl-exp.xml b/chapter06/perl-exp.xml
index 01b4140c7..c41ccb921 100644
--- a/chapter06/perl-exp.xml
+++ b/chapter06/perl-exp.xml
@@ -1,7 +1,7 @@
<sect2>
<title>Command explanations</title>
-<para><userinput>patch -Np1 -i ../perl-&perl-version;.patch:</userinput> This
+<para><userinput>patch -Np1 -i ../perl-&perl-patch-version;.patch:</userinput> This
patch fixes a compile problem with GCC-3.1.</para>
</sect2>
diff --git a/chapter06/perl-inst.xml b/chapter06/perl-inst.xml
index c14b4ef0e..bac124b7c 100644
--- a/chapter06/perl-inst.xml
+++ b/chapter06/perl-inst.xml
@@ -7,7 +7,7 @@ commands.</para>
<para>Install Perl by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../perl-&perl-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../perl-&perl-patch-version;.patch &amp;&amp;
./configure.gnu --prefix=/usr &amp;&amp;
make &amp;&amp;
make install</userinput></screen></para>
diff --git a/chapter06/tar-inst.xml b/chapter06/tar-inst.xml
index 665e69de7..07ab9fb4b 100644
--- a/chapter06/tar-inst.xml
+++ b/chapter06/tar-inst.xml
@@ -9,7 +9,7 @@ for gzip files).</para>
<para>Apply the patch by running the following command:</para>
-<para><screen><userinput>patch -Np1 -i ../tar-1.13.patch</userinput></screen></para>
+<para><screen><userinput>patch -Np1 -i ../tar-&tar-patch-version;.patch</userinput></screen></para>
<para>Install Tar by running the following commands:</para>
diff --git a/chapter06/vim-inst.xml b/chapter06/vim-inst.xml
index 5514109b4..26f5ecc12 100644
--- a/chapter06/vim-inst.xml
+++ b/chapter06/vim-inst.xml
@@ -13,7 +13,7 @@ Currently there are hints for Emacs, joe, and nano.</para>
<para>Install Vim by running the following commands:</para>
-<para><screen><userinput>patch -Np1 -i ../vim-&vim-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../vim-&vim-patch-version;.patch &amp;&amp;
./configure --prefix=/usr &amp;&amp;
make CPPFLAGS=-DSYS_VIMRC_FILE=\\\"/etc/vimrc\\\" &amp;&amp;
make install &amp;&amp;
@@ -35,7 +35,7 @@ for their temporary state files, like temporary save files for example.
If you wish vim to conform to the FHS, you should use this command set
instead of the one presented above:</para>
-<para><screen><userinput>patch -Np1 -i ../vim-&vim-version;.patch &amp;&amp;
+<para><screen><userinput>patch -Np1 -i ../vim-&vim-patch-version;.patch &amp;&amp;
./configure --prefix=/usr --localstatedir=/var/lib/vim &amp;&amp;
make CPPFLAGS=-DSYS_VIMRC_FILE=\\\"/etc/vimrc\\\" &amp;&amp;
make install &amp;&amp;