aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2009-07-18 12:32:24 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2009-07-18 12:32:24 +0000
commit1891a2ca1611863e9d3182ea1ee54beb34a51f69 (patch)
tree9bd02533ebc8864269d99dd08d0a22fb86b1e613
parent081266a57d7cbcc93dfdc92313352f3ff7d25fc7 (diff)
Prevent E2fsprogs from overwriting Util-Linux-NG's copy of uuidd. Fixes #2443.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8964 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.xml5
-rw-r--r--chapter06/e2fsprogs.xml9
2 files changed, 10 insertions, 4 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 130c5626a..021e21ba2 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -41,6 +41,11 @@
<para>2009-07-18</para>
<itemizedlist>
<listitem>
+ <para>[matthew] - Prevent E2fsprogs from overwriting Util-Linux-NG's
+ version of <command>uuidd</command>. Fixes
+ <ulink url="&lfs-ticket-root;2443">#2443</ulink>.</para>
+ </listitem>
+ <listitem>
<para>[matthew] - Upgrade to Module-Init-Tools-3.10. Fixes
<ulink url="&lfs-ticket-root;2441">#2441</ulink>.</para>
</listitem>
diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml
index 432baae3a..2d5860689 100644
--- a/chapter06/e2fsprogs.xml
+++ b/chapter06/e2fsprogs.xml
@@ -58,7 +58,7 @@ 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</userinput></screen>
+ --enable-elf-shlibs --disable-libblkid --disable-libuuid --disable-uuidd</userinput></screen>
<variablelist>
<title>The meaning of the configure options:</title>
@@ -86,12 +86,13 @@ cd build</userinput></screen>
</varlistentry>
<varlistentry>
- <term><parameter>--disable-lib*</parameter></term>
+ <term><parameter>--disable-*</parameter></term>
<listitem>
<para>This prevents E2fsprogs from building and installing the
<systemitem class="library">libuuid</systemitem> and
- <systemitem class="library">libblkid</systemitem> libraries, as
- Util-Linux-NG installed them earlier.</para>
+ <systemitem class="library">libblkid</systemitem> libraries, and the
+ <systemitem class="daemon">uuidd</systemitem> daemon, as Util-Linux-NG
+ installed them earlier.</para>
</listitem>
</varlistentry>