diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-03-16 23:28:17 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-03-16 23:28:17 +0000 |
commit | 6f265d231a1aea46bb006352db169eb6a288a5f1 (patch) | |
tree | bbfec090f3d1a57ed8350ca2ea81ef03c4129565 | |
parent | 1858558e82089aadd977796eb14fac7db79421bb (diff) |
added --libexecdir
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1716 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | appendixa/appendixa.xml | 1 | ||||
-rw-r--r-- | appendixa/chroot-dep.xml | 12 | ||||
-rw-r--r-- | chapter01/changelog.xml | 4 | ||||
-rw-r--r-- | chapter05/gawk-inst.xml | 6 | ||||
-rw-r--r-- | chapter06/chroot.xml | 2 | ||||
-rw-r--r-- | chapter06/gawk-inst.xml | 2 | ||||
-rw-r--r-- | index.xml | 2 |
7 files changed, 9 insertions, 20 deletions
diff --git a/appendixa/appendixa.xml b/appendixa/appendixa.xml index 36ab1dcf6..c16727578 100644 --- a/appendixa/appendixa.xml +++ b/appendixa/appendixa.xml @@ -10,7 +10,6 @@ &aa-binutils; &aa-bison; &aa-bzip2; -&aa-chroot; &aa-diffutils; &aa-e2fsprogs; &aa-ed; diff --git a/appendixa/chroot-dep.xml b/appendixa/chroot-dep.xml deleted file mode 100644 index 75f0f86b9..000000000 --- a/appendixa/chroot-dep.xml +++ /dev/null @@ -1,12 +0,0 @@ -<sect2> -<title>Dependencies</title> - -<para>Chroot needs the following to be installed:</para> - -<literallayout> -bash: bash -sh-utils: env -</literallayout> - -</sect2> - diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index b591a3109..9a97ecace 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -33,6 +33,10 @@ </para></listitem> +<listitem><para>March 16th, 2002 [gerard]: Chapter 06+Appendix A: Removed +the chroot dependencies. It's not a package so it's a bit out of +place.</para></listitem> + <listitem><para>March 16th, 2002 [gerard]: Chapter 05+06 - Gawk: Added commands to sed the <filename>awklib/Makefile.in</filename> file to change the <emphasis>datadir</emphasis> and <emphasis>libexecdir</emphasis> diff --git a/chapter05/gawk-inst.xml b/chapter05/gawk-inst.xml index 0c216232f..9bea62ee3 100644 --- a/chapter05/gawk-inst.xml +++ b/chapter05/gawk-inst.xml @@ -13,7 +13,8 @@ sed -e '/^datadir/s/awk/gawk/' \ -e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in && cd .. && export CPPFLAGS=-Dre_max_failures=re_max_failures2 && -./configure --prefix=$LFS/usr --disable-nls && +./configure --prefix=$LFS/usr --disable-nls \ + --libexecdir=$LFS/usr/bin && unset CPPFLAGS && make LDFLAGS=-static && make install</userinput></screen></para> @@ -26,7 +27,8 @@ cp Makefile.in Makefile.in.backup && sed -e '/^datadir/s/awk/gawk/' \ -e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in && cd .. && -./configure --prefix=$LFS/usr --disable-nls && +./configure --prefix=$LFS/usr --disable-nls \ + --libexecdir=$LFS/usr/bin && make LDFLAGS=-static && make install</userinput></screen></para> diff --git a/chapter06/chroot.xml b/chapter06/chroot.xml index 745396f4d..120eef684 100644 --- a/chapter06/chroot.xml +++ b/chapter06/chroot.xml @@ -37,7 +37,5 @@ book.</para> <para>Note that the bash prompt will contain "I have no name!" This is normal because Glibc hasn't been installed yet.</para> -&aa-chroot-dep; - </sect1> diff --git a/chapter06/gawk-inst.xml b/chapter06/gawk-inst.xml index c6d4a6067..0796a41c4 100644 --- a/chapter06/gawk-inst.xml +++ b/chapter06/gawk-inst.xml @@ -8,7 +8,7 @@ cp Makefile.in Makefile.in.backup && sed -e '/^datadir/s/awk/gawk/' \ -e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in && cd .. && -./configure --prefix=/usr && +./configure --prefix=/usr --libexecdir=/usr/bin && make && make install</userinput></screen></para> @@ -386,8 +386,6 @@ <!ENTITY aa-bzip2-desc SYSTEM "appendixa/bzip2-desc.xml"> <!ENTITY aa-bzip2-dep SYSTEM "appendixa/bzip2-dep.xml"> <!ENTITY aa-bzip2-down SYSTEM "appendixa/bzip2-down.xml"> -<!ENTITY aa-chroot SYSTEM "appendixa/chroot.xml"> -<!ENTITY aa-chroot-dep SYSTEM "appendixa/chroot-dep.xml"> <!ENTITY aa-diffutils SYSTEM "appendixa/diffutils.xml"> <!ENTITY aa-diffutils-desc SYSTEM "appendixa/diffutils-desc.xml"> <!ENTITY aa-diffutils-dep SYSTEM "appendixa/diffutils-dep.xml"> |