Explorar el Código

Disable unneeded installation of a systemd specific file
in Chapter 5 util-linux.


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10450 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Bruce Dubbs hace 11 años
padre
commit
71e0f493b7
Se han modificado 3 ficheros con 25 adiciones y 3 borrados
  1. 11 0
      chapter01/changelog.xml
  2. 12 1
      chapter05/util-linux.xml
  3. 2 2
      general.ent

+ 11 - 0
chapter01/changelog.xml

@@ -35,6 +35,17 @@
       </itemizedlist>
     </listitem>
 -->
+    <listitem>
+      <para>2014-01-25</para>
+      <itemizedlist>
+        <listitem>
+          <para>[bdubbs] - Add a configure switch to util-linux
+          in Chapter 5 to prevent an installation error for 
+          hosts that have systemd installed.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
     <listitem>
       <para>2014-01-22</para>
       <itemizedlist>

+ 12 - 1
chapter05/util-linux.xml

@@ -42,7 +42,9 @@
 
     <para>Prepare Util-linux for compilation:</para>
 
-<screen><userinput remap="configure">./configure --prefix=/tools --disable-makeinstall-chown</userinput></screen>
+<screen><userinput remap="configure">./configure --prefix=/tools             \
+            --disable-makeinstall-chown \
+            --without-systemdsystemunitdir</userinput></screen>
 
     <variablelist>
       <title>The meaning of the configure option:</title>
@@ -56,6 +58,15 @@
           root.</para>
         </listitem>
       </varlistentry>
+
+      <varlistentry>
+        <term><parameter>--without-systemdsystemunitdir</parameter></term>
+        <listitem>
+          <para>On systems that use systemd, the package tries to install 
+          a systemd specific file to a non-existent directory in /tools.
+          This switch disables the unnecessary action.</para>
+        </listitem>
+      </varlistentry>
      </variablelist>
 
     <para>Compile the package:</para>

+ 2 - 2
general.ent

@@ -1,5 +1,5 @@
-<!ENTITY version         "SVN-20140122">
-<!ENTITY releasedate     "January 22, 2014">
+<!ENTITY version         "SVN-20140125">
+<!ENTITY releasedate     "January 25, 2014">
 <!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
 <!ENTITY milestone       "7.5">
 <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->