aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2014-01-26 03:28:05 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2014-01-26 03:28:05 +0000
commit71e0f493b73026bd7a3dc1812bf3bd2ab2a6526f (patch)
tree69ad006da0120b85e4cc9e18a4e0b7c5c573e992 /chapter05
parentef8510e8256871d39acc10f1cc363dbdcd89390d (diff)
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
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/util-linux.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/chapter05/util-linux.xml b/chapter05/util-linux.xml
index c049150b4..8407f802c 100644
--- a/chapter05/util-linux.xml
+++ b/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>