aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2003-05-13 07:38:47 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2003-05-13 07:38:47 +0000
commit4a7a683b9a72b17fe56efe9b1e0e2e33d1c9278d (patch)
tree8fa3ab5367dc2725d0a5c7d1b5cfd798e46b819b /chapter05
parentb74e415582bf90f1189d9546cfd07b902b6f8e0a (diff)
Applied Zack's various-fixes patch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2608 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gettext-inst.xml4
-rw-r--r--chapter05/glibc-inst.xml2
-rw-r--r--chapter05/kernelheaders-inst.xml4
-rw-r--r--chapter05/perl-inst.xml10
4 files changed, 10 insertions, 10 deletions
diff --git a/chapter05/gettext-inst.xml b/chapter05/gettext-inst.xml
index 334c45df4..c2fcf73c3 100644
--- a/chapter05/gettext-inst.xml
+++ b/chapter05/gettext-inst.xml
@@ -3,8 +3,8 @@
<sect2>
<title>Installation of Gettext</title>
-<para><screen><userinput>./configure --prefix=/stage1 &amp;&amp;
-make &amp;&amp;
+<para><screen><userinput>./configure --prefix=/stage1
+make
make check
make install</userinput></screen></para>
diff --git a/chapter05/glibc-inst.xml b/chapter05/glibc-inst.xml
index 7be5e261f..0758ae04f 100644
--- a/chapter05/glibc-inst.xml
+++ b/chapter05/glibc-inst.xml
@@ -20,7 +20,7 @@ is putting your system at a very high risk.</para>
<para>The documentation that comes with Glibc recommends to build the package
not in the source directory but in a separate, dedicated directory:</para>
-<para><screen><userinput>mkdir ../glibc-build &amp;&amp;
+<para><screen><userinput>mkdir ../glibc-build
cd ../glibc-build</userinput></screen></para>
<para>Next, prepare Glibc to be compiled:</para>
diff --git a/chapter05/kernelheaders-inst.xml b/chapter05/kernelheaders-inst.xml
index fc79a0e25..dac03be82 100644
--- a/chapter05/kernelheaders-inst.xml
+++ b/chapter05/kernelheaders-inst.xml
@@ -43,8 +43,8 @@ symlink:</para>
<para>Install the platform specific-header files:</para>
-<para><screen><userinput>mkdir /stage1/include/asm &amp;&amp;
-cp include/asm/* /stage1/include/asm &amp;&amp;
+<para><screen><userinput>mkdir /stage1/include/asm
+cp include/asm/* /stage1/include/asm
cp -R include/asm-generic /stage1/include</userinput></screen></para>
<para>Install the cross-platform kernel header files:</para>
diff --git a/chapter05/perl-inst.xml b/chapter05/perl-inst.xml
index bc66b3950..c8bc5244e 100644
--- a/chapter05/perl-inst.xml
+++ b/chapter05/perl-inst.xml
@@ -5,12 +5,12 @@
<para><screen><userinput>patch -Np1 -i ../perl-&perl-version;-libc.patch
chmod u+w hints/linux.sh
echo 'static_ext="IO re Fcntl"' >> hints/linux.sh
-./configure.gnu --prefix=/stage1 &amp;&amp;
+./configure.gnu --prefix=/stage1
make perl
-make utilities &amp;&amp;
-cp perl /stage1/bin/perl &amp;&amp;
-cp pod/pod2man /stage1/bin &amp;&amp;
-mkdir -p /stage1/lib/perl5/5.8.0 &amp;&amp;
+make utilities
+cp perl /stage1/bin/perl
+cp pod/pod2man /stage1/bin
+mkdir -p /stage1/lib/perl5/5.8.0
cp -R lib/* /stage1/lib/perl5/5.8.0</userinput></screen></para>
</sect2>