mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 14:24:48 +00:00
added --libexecdir
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1716 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
1858558e82
commit
6f265d231a
@ -10,7 +10,6 @@
|
|||||||
&aa-binutils;
|
&aa-binutils;
|
||||||
&aa-bison;
|
&aa-bison;
|
||||||
&aa-bzip2;
|
&aa-bzip2;
|
||||||
&aa-chroot;
|
|
||||||
&aa-diffutils;
|
&aa-diffutils;
|
||||||
&aa-e2fsprogs;
|
&aa-e2fsprogs;
|
||||||
&aa-ed;
|
&aa-ed;
|
||||||
|
@ -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>
|
|
||||||
|
|
@ -33,6 +33,10 @@
|
|||||||
|
|
||||||
</para></listitem>
|
</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
|
<listitem><para>March 16th, 2002 [gerard]: Chapter 05+06 - Gawk: Added
|
||||||
commands to sed the <filename>awklib/Makefile.in</filename> file to change
|
commands to sed the <filename>awklib/Makefile.in</filename> file to change
|
||||||
the <emphasis>datadir</emphasis> and <emphasis>libexecdir</emphasis>
|
the <emphasis>datadir</emphasis> and <emphasis>libexecdir</emphasis>
|
||||||
|
@ -13,7 +13,8 @@ sed -e '/^datadir/s/awk/gawk/' \
|
|||||||
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
||||||
cd .. &&
|
cd .. &&
|
||||||
export CPPFLAGS=-Dre_max_failures=re_max_failures2 &&
|
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 &&
|
unset CPPFLAGS &&
|
||||||
make LDFLAGS=-static &&
|
make LDFLAGS=-static &&
|
||||||
make install</userinput></screen></para>
|
make install</userinput></screen></para>
|
||||||
@ -26,7 +27,8 @@ cp Makefile.in Makefile.in.backup &&
|
|||||||
sed -e '/^datadir/s/awk/gawk/' \
|
sed -e '/^datadir/s/awk/gawk/' \
|
||||||
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
||||||
cd .. &&
|
cd .. &&
|
||||||
./configure --prefix=$LFS/usr --disable-nls &&
|
./configure --prefix=$LFS/usr --disable-nls \
|
||||||
|
--libexecdir=$LFS/usr/bin &&
|
||||||
make LDFLAGS=-static &&
|
make LDFLAGS=-static &&
|
||||||
make install</userinput></screen></para>
|
make install</userinput></screen></para>
|
||||||
|
|
||||||
|
@ -37,7 +37,5 @@ book.</para>
|
|||||||
<para>Note that the bash prompt will contain "I have no name!" This is
|
<para>Note that the bash prompt will contain "I have no name!" This is
|
||||||
normal because Glibc hasn't been installed yet.</para>
|
normal because Glibc hasn't been installed yet.</para>
|
||||||
|
|
||||||
&aa-chroot-dep;
|
|
||||||
|
|
||||||
</sect1>
|
</sect1>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ cp Makefile.in Makefile.in.backup &&
|
|||||||
sed -e '/^datadir/s/awk/gawk/' \
|
sed -e '/^datadir/s/awk/gawk/' \
|
||||||
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
-e '/^libexecdir/s%/awk%%' Makefile.in.backup > Makefile.in &&
|
||||||
cd .. &&
|
cd .. &&
|
||||||
./configure --prefix=/usr &&
|
./configure --prefix=/usr --libexecdir=/usr/bin &&
|
||||||
make &&
|
make &&
|
||||||
make install</userinput></screen></para>
|
make install</userinput></screen></para>
|
||||||
|
|
||||||
|
@ -386,8 +386,6 @@
|
|||||||
<!ENTITY aa-bzip2-desc SYSTEM "appendixa/bzip2-desc.xml">
|
<!ENTITY aa-bzip2-desc SYSTEM "appendixa/bzip2-desc.xml">
|
||||||
<!ENTITY aa-bzip2-dep SYSTEM "appendixa/bzip2-dep.xml">
|
<!ENTITY aa-bzip2-dep SYSTEM "appendixa/bzip2-dep.xml">
|
||||||
<!ENTITY aa-bzip2-down SYSTEM "appendixa/bzip2-down.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 SYSTEM "appendixa/diffutils.xml">
|
||||||
<!ENTITY aa-diffutils-desc SYSTEM "appendixa/diffutils-desc.xml">
|
<!ENTITY aa-diffutils-desc SYSTEM "appendixa/diffutils-desc.xml">
|
||||||
<!ENTITY aa-diffutils-dep SYSTEM "appendixa/diffutils-dep.xml">
|
<!ENTITY aa-diffutils-dep SYSTEM "appendixa/diffutils-dep.xml">
|
||||||
|
Loading…
Reference in New Issue
Block a user