From 1a71dc7d0bb4ef640e3b33dc69b09797f33167e2 Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Wed, 5 Sep 2001 22:35:33 +0000 Subject: [Bug 162]: Move patch commands for gzip and sh-utils in ch5 out of main text git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1184 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/gzip-exp.xml | 9 --------- chapter05/gzip-inst.xml | 16 ++++++++++++---- chapter05/gzip.xml | 1 - chapter05/shellutils-exp.xml | 11 ----------- chapter05/shellutils-inst.xml | 19 ++++++++++++------- chapter05/shellutils.xml | 1 - 6 files changed, 24 insertions(+), 33 deletions(-) delete mode 100644 chapter05/gzip-exp.xml delete mode 100644 chapter05/shellutils-exp.xml (limited to 'chapter05') diff --git a/chapter05/gzip-exp.xml b/chapter05/gzip-exp.xml deleted file mode 100644 index 5c3ab225a..000000000 --- a/chapter05/gzip-exp.xml +++ /dev/null @@ -1,9 +0,0 @@ - -Command explanations - -patch -Np1 -i ../gzip-&gzip-version;.patch This -patch file is necessary to avoid a conflict of variable names with -Glibc-2.0 systems when compiling and linking statically. - - - diff --git a/chapter05/gzip-inst.xml b/chapter05/gzip-inst.xml index 8d19c3cbb..09e431d2d 100644 --- a/chapter05/gzip-inst.xml +++ b/chapter05/gzip-inst.xml @@ -1,11 +1,19 @@ Installation of Gzip -Before Gzip is installed, the gzip patch file needs to be -unpacked. +Before Gzip is installed, the patch file may need to be applied. This +patch file is necessary to avoid a conflict of variable names +with Glibc-2.0 systems when compiling and linking statically and so is +only required if your base system runs Glibc-2.0. It is however +safe to apply the patch even if you are running a different glibc +version, so if you aren't sure, it's best to apply it. -patch -Np1 -i ../gzip-&gzip-version;.patch && -./configure --prefix=$LFS/usr && +Apply the patch by running the following command: + +patch -Np1 -i ../gzip-&gzip-version;.patch + +Install Gzip by running the following commands: +./configure --prefix=$LFS/usr && make LDFLAGS=-static && make install && cp $LFS/usr/bin/gunzip $LFS/usr/bin/gzip $LFS/bin && diff --git a/chapter05/gzip.xml b/chapter05/gzip.xml index 230b5e698..ef05b08c7 100644 --- a/chapter05/gzip.xml +++ b/chapter05/gzip.xml @@ -5,7 +5,6 @@ Estimated required disk space: &gzip-compsize-static; &c5-gzip-inst; -&c5-gzip-exp; &aa-gzip-desc; &ab-gzip-dep; diff --git a/chapter05/shellutils-exp.xml b/chapter05/shellutils-exp.xml deleted file mode 100644 index 517a12acd..000000000 --- a/chapter05/shellutils-exp.xml +++ /dev/null @@ -1,11 +0,0 @@ - -Command explanations - -patch -Np1 -i -../sh-utils-&sh-utils-version;.patchThis -patch is needed to avoid a conflict of variable names with certain Glibc -verions (depending on the way your distributio has patched Glibc) when -compiling sh-utils statically. - - - diff --git a/chapter05/shellutils-inst.xml b/chapter05/shellutils-inst.xml index 5f83c1a80..cce9c707b 100644 --- a/chapter05/shellutils-inst.xml +++ b/chapter05/shellutils-inst.xml @@ -1,19 +1,24 @@ Installation of Sh-utils -Before Sh-utils is installed, the sh-utils patch file needs -to be unpacked. +Before Sh-utils is installed, the sh-utils patch file may need to +be applied. This patch is needed to avoid a conflict of variable names +with certain Glibc verions (usually glibc-2.1.x) when compiling sh-utils +statically. It is however safe to apply the patch even if you are +running a different glibc version, so if you aren't sure, it's +best to apply it. -patch -Np1 -i ../sh-utils-&sh-utils-version;.patch && -./configure --prefix=$LFS/usr --disable-nls && +Apply the patch by running the following command: + +patch -Np1 -i ../sh-utils-&sh-utils-version;.patch + +Install Sh-utils by running the following commands: +./configure --prefix=$LFS/usr --disable-nls && make LDFLAGS=-static && make install && cd $LFS/usr/bin && mv date echo false pwd stty $LFS/bin && mv su true uname hostname $LFS/bin -The patch file only needs to be applied if you are running -glibc-2.1.x on your base system. - diff --git a/chapter05/shellutils.xml b/chapter05/shellutils.xml index df2cf3500..b9c9beb9a 100644 --- a/chapter05/shellutils.xml +++ b/chapter05/shellutils.xml @@ -5,7 +5,6 @@ Estimated required disk space: &sh-utils-compsize-static; &c5-shellutils-inst; -&c5-shellutils-exp; &aa-shellutils-desc; &ab-sh-utils-dep; -- cgit v1.2.3-54-g00ecf