diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-07-23 20:57:49 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-07-23 20:57:49 +0000 |
commit | ec8ebf26a2a5521387d110cdbc4c3a079a241a41 (patch) | |
tree | c19ff6352af6c35ead1120f3d56d8ae8e49f1d14 /chapter06 | |
parent | 5a9be1c78fddcb2ff17af8af1c869a425f01c741 (diff) |
Prevent E2fsprogs from installing the fsck wrapper. Fixes #2453.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8992 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/e2fsprogs.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml index b44d4d63b..4d7d1eda0 100644 --- a/chapter06/e2fsprogs.xml +++ b/chapter06/e2fsprogs.xml @@ -58,7 +58,8 @@ cd build</userinput></screen> <para>Prepare E2fsprogs for compilation:</para> <screen><userinput remap="configure">../configure --prefix=/usr --with-root-prefix="" \ - --enable-elf-shlibs --disable-libblkid --disable-libuuid --disable-uuidd</userinput></screen> + --enable-elf-shlibs --disable-libblkid --disable-libuuid --disable-uuidd \ + --disable-fsck</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -90,9 +91,10 @@ cd build</userinput></screen> <listitem> <para>This prevents E2fsprogs from building and installing the <systemitem class="library">libuuid</systemitem> and - <systemitem class="library">libblkid</systemitem> libraries, and the - <systemitem class="daemon">uuidd</systemitem> daemon, as Util-Linux-NG - installed them earlier.</para> + <systemitem class="library">libblkid</systemitem> libraries, the + <systemitem class="daemon">uuidd</systemitem> daemon, and the + <command>fsck</command> wrapper, as Util-Linux-NG installed all of + them earlier.</para> </listitem> </varlistentry> |