aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2017-11-09 16:35:09 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2017-11-09 16:35:09 +0000
commitfc199db3af4c4688dcdb2130123e7999a56a2943 (patch)
tree86380a2ec79e351e6f9e904495d07be2550384bc
parent1e16f1a8296776521996092383de1e6c6243a91b (diff)
Editorial changes to systemd page
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11328 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter06/systemd.xml50
1 files changed, 27 insertions, 23 deletions
diff --git a/chapter06/systemd.xml b/chapter06/systemd.xml
index 923b7a36f..ebc5fa416 100644
--- a/chapter06/systemd.xml
+++ b/chapter06/systemd.xml
@@ -43,29 +43,35 @@
<para>Create a symlink to work around missing xsltproc:</para>
<screen><userinput remap="pre">ln -s /tools/bin/true /usr/bin/xsltproc</userinput></screen>
+ <para>Set up the man pages:</para>
+
+<screen><userinput remap="pre">tar -xf ../systemd-man-pages-235.tar.xz</userinput></screen>
<para>Prepare systemd for compilation:</para>
- <screen><userinput remap="configure">
-LANG=en_US.UTF-8 meson --prefix=/usr \
- --sysconfdir /etc \
- --localstatedir /var \
- -Dblkid=true \
- -Dbuildtype=release \
- -Ddefault-dnssec=no \
- -Dfirstboot=false \
- -Dkill-path=/bin/kill \
- -Dkmod-path=/bin/kmod \
- -Dldconfig=false \
- -Dmount-path=/bin/mount \
- -Drootprefix= \
- -Drootlibdir=/lib \
- -Dsplit-usr=true \
- -Dsulogin-path=/sbin/sulogin \
- -Dsysusers=false \
- -Dumount-path=/bin/umount \
- -Db_lto=false \
- $PWD build</userinput></screen>
+ <screen><userinput remap="configure">mkdir build
+cd build
+
+LANG=en_US.UTF-8 \
+meson --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ -Dblkid=true \
+ -Dbuildtype=release \
+ -Ddefault-dnssec=no \
+ -Dfirstboot=false \
+ -Dkill-path=/bin/kill \
+ -Dkmod-path=/bin/kmod \
+ -Dldconfig=false \
+ -Dmount-path=/bin/mount \
+ -Drootprefix= \
+ -Drootlibdir=/lib \
+ -Dsplit-usr=true \
+ -Dsulogin-path=/sbin/sulogin \
+ -Dsysusers=false \
+ -Dumount-path=/bin/umount \
+ -Db_lto=false \
+ ..</userinput></screen>
<variablelist>
<title>The meaning of the meson options:</title>
@@ -141,9 +147,7 @@ LANG=en_US.UTF-8 meson --prefix=/usr \
<para>Compile the package:</para>
-<screen><userinput remap="make">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz
-cd build
-LANG=en_US.UTF-8 ninja</userinput></screen>
+<screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
<!--
<para>To test the package, execute the following command:</para>