diff options
author | Marc Heerdink <gimli@linuxfromscratch.org> | 2002-01-30 16:23:29 +0000 |
---|---|---|
committer | Marc Heerdink <gimli@linuxfromscratch.org> | 2002-01-30 16:23:29 +0000 |
commit | 1d91cdf2fa80f2615db4474de68ea253c28df9df (patch) | |
tree | 27abd79857918bf0951c26666dc9a81f4f986063 | |
parent | b1bc8e0120a3d309ea05f6bf67b45d369123338d (diff) |
[Bug 261] Removed the --libexecdir configure option from fileutils' configure flags
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1511 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 3 | ||||
-rw-r--r-- | chapter05/fileutils-exp.xml | 5 | ||||
-rw-r--r-- | chapter05/fileutils-inst.xml | 2 | ||||
-rw-r--r-- | chapter06/fileutils-inst.xml | 3 |
4 files changed, 5 insertions, 8 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 4317edb8a..6909414d8 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -24,6 +24,9 @@ <itemizedlist> +<listitem><para>January 30th, 2002 [marcheerdink]: Chapters 5+6: Removed +the --libexecdir flag from fileutils' configure options.</para></listitem> + <listitem><para>January 30th, 2002 [marcheerdink]: Chapters 6: Added a symlink from vipw to vigr after installing shadow.</para></listitem> diff --git a/chapter05/fileutils-exp.xml b/chapter05/fileutils-exp.xml index f66eda477..59888e0ea 100644 --- a/chapter05/fileutils-exp.xml +++ b/chapter05/fileutils-exp.xml @@ -14,10 +14,5 @@ systems. If this isn't done, then there is the possibility of all of the fileutils programs causing segmentation faults once chroot is entered in chapter 6.</para> -<para><userinput>--libexecdir=$LFS/bin:</userinput> This configure option will -set the program executable directory to $LFS/bin. This is normally set -to /usr/libexec, but nothing is placed in it. Changing it just prevents -that directory from being created.</para> - </sect2> diff --git a/chapter05/fileutils-inst.xml b/chapter05/fileutils-inst.xml index 0e1c72452..9bd395ac6 100644 --- a/chapter05/fileutils-inst.xml +++ b/chapter05/fileutils-inst.xml @@ -29,7 +29,7 @@ sed -e 's/\(.*\)\(fopen-safer\.c \)\\/\1\2atexit.c \\/' \ <para>Install fileutils by running the following commands:</para> <para><screen><userinput>./configure --disable-nls \ - --prefix=$LFS/usr --libexecdir=$LFS/bin --bindir=$LFS/bin && + --prefix=$LFS/usr --bindir=$LFS/bin && make LDFLAGS=-static && make install && cd $LFS/usr/bin && diff --git a/chapter06/fileutils-inst.xml b/chapter06/fileutils-inst.xml index 4e7ad9327..2653ef754 100644 --- a/chapter06/fileutils-inst.xml +++ b/chapter06/fileutils-inst.xml @@ -3,8 +3,7 @@ <para>Install Fileutils by running the following commands:</para> -<para><screen><userinput>./configure --prefix=/usr --bindir=/bin \ - --libexecdir=/bin && +<para><screen><userinput>./configure --prefix=/usr --bindir=/bin && make && make install && cd /usr/bin && |