From fc199db3af4c4688dcdb2130123e7999a56a2943 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 9 Nov 2017 16:35:09 +0000 Subject: [PATCH] Editorial changes to systemd page git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11328 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/systemd.xml | 50 +++++++++++++++++++++++-------------------- 1 file 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 @@ Create a symlink to work around missing xsltproc: ln -s /tools/bin/true /usr/bin/xsltproc + Set up the man pages: + +tar -xf ../systemd-man-pages-235.tar.xz Prepare systemd for compilation: - -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 + 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 \ + .. The meaning of the meson options: @@ -141,9 +147,7 @@ LANG=en_US.UTF-8 meson --prefix=/usr \ Compile the package: -tar -xf ../systemd-man-pages-&systemd-version;.tar.xz -cd build -LANG=en_US.UTF-8 ninja +LANG=en_US.UTF-8 ninja