diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-31 00:21:59 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-31 00:21:59 +0000 |
commit | 166f15a8438b70555b7cc746b7615e3b29c6e09a (patch) | |
tree | d2d1e90a4552439a54f8c8e321e479c146866833 | |
parent | 69108682754c1f7517ef87c9a4f2674dd5994ddc (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.xml | 3 | ||||
-rw-r--r-- | chapter06/glibc-inst.xml | 2 |
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 > 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 &&</userinput> <userinput>cd ../glibc-build &&</userinput> <userinput>../glibc-&glibc-version;/configure --prefix=/usr \</userinput> -<userinput> --enable-add-ons --libexecdir=/usr &&</userinput> +<userinput> --enable-add-ons --libexecdir=/usr/bin &&</userinput> <userinput>cp config.make config.make.backup &&</userinput> <userinput>sed 's/cross-compiling = yes/cross-compiling = no/' \</userinput> <userinput> config.make > tmp~ &&</userinput> |