From 166f15a8438b70555b7cc746b7615e3b29c6e09a Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Fri, 31 Aug 2001 00:21:59 +0000 Subject: [PATCH] Fixed --libexecdir to /usr/bin git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1135 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/glibc-exp.xml | 3 +++ chapter06/glibc-inst.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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. --enable-add-ons: This enables the add-on that we install with Glibc: linuxthreads +--libexecdir=/usr/bin: This will cause the +pt_chown program to be installed in the /usr/bin directory. + sed 's/cross-compiling = yes/cross-compiling = no/' config.make > config.make~: This time, we're replacing cross-compiling = yes 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. mkdir ../glibc-build && cd ../glibc-build && ../glibc-&glibc-version;/configure --prefix=/usr \ -   --enable-add-ons --libexecdir=/usr && +   --enable-add-ons --libexecdir=/usr/bin && cp config.make config.make.backup && sed 's/cross-compiling = yes/cross-compiling = no/' \    config.make > tmp~ &&