aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-08-31 00:21:59 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-08-31 00:21:59 +0000
commit166f15a8438b70555b7cc746b7615e3b29c6e09a (patch)
treed2d1e90a4552439a54f8c8e321e479c146866833
parent69108682754c1f7517ef87c9a4f2674dd5994ddc (diff)
Fixed --libexecdir to /usr/bin
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1135 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter06/glibc-exp.xml3
-rw-r--r--chapter06/glibc-inst.xml2
2 files changed, 4 insertions, 1 deletions
diff --git a/chapter06/glibc-exp.xml b/chapter06/glibc-exp.xml
index 41a8f8ae1..deca6b651 100644
--- a/chapter06/glibc-exp.xml
+++ b/chapter06/glibc-exp.xml
@@ -41,6 +41,9 @@ edited Makefile and then copying it back over the original.</para>
<para><userinput>--enable-add-ons:</userinput> This enables the add-on that
we install with Glibc: linuxthreads</para>
+<para><userinput>--libexecdir=/usr/bin:</userinput> This will cause the
+pt_chown program to be installed in the /usr/bin directory.</para>
+
<para><userinput>sed 's/cross-compiling = yes/cross-compiling = no/'
config.make &gt; config.make~:</userinput> This time, we're replacing
<filename>cross-compiling = yes</filename> with
diff --git a/chapter06/glibc-inst.xml b/chapter06/glibc-inst.xml
index 849f24e08..2f6326863 100644
--- a/chapter06/glibc-inst.xml
+++ b/chapter06/glibc-inst.xml
@@ -19,7 +19,7 @@ would do.</para>
<userinput>mkdir ../glibc-build &amp;&amp;</userinput>
<userinput>cd ../glibc-build &amp;&amp;</userinput>
<userinput>../glibc-&glibc-version;/configure --prefix=/usr \</userinput>
-<userinput>&nbsp;&nbsp;&nbsp;--enable-add-ons --libexecdir=/usr &amp;&amp;</userinput>
+<userinput>&nbsp;&nbsp;&nbsp;--enable-add-ons --libexecdir=/usr/bin &amp;&amp;</userinput>
<userinput>cp config.make config.make.backup &amp;&amp;</userinput>
<userinput>sed 's/cross-compiling = yes/cross-compiling = no/' \</userinput>
<userinput>&nbsp;&nbsp;&nbsp;config.make &gt; tmp~ &amp;&amp;</userinput>