Changeset fc199db


Ignore:
Timestamp:
11/09/2017 04:35:09 PM (6 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
2ba06af
Parents:
1e16f1a8
Message:

Editorial changes to systemd page

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/systemd.xml

    r1e16f1a8 rfc199db  
    4444
    4545<screen><userinput remap="pre">ln -s /tools/bin/true /usr/bin/xsltproc</userinput></screen>
     46    <para>Set up the man pages:</para>
     47
     48<screen><userinput remap="pre">tar -xf ../systemd-man-pages-235.tar.xz</userinput></screen>
    4649
    4750    <para>Prepare systemd for compilation:</para>
    4851
    49     <screen><userinput remap="configure">
    50 LANG=en_US.UTF-8  meson --prefix=/usr                   \
    51                         --sysconfdir /etc               \
    52                         --localstatedir /var            \
    53                         -Dblkid=true                    \
    54                         -Dbuildtype=release             \
    55                         -Ddefault-dnssec=no             \
    56                         -Dfirstboot=false               \
    57                         -Dkill-path=/bin/kill           \
    58                         -Dkmod-path=/bin/kmod           \
    59                         -Dldconfig=false                \
    60                         -Dmount-path=/bin/mount         \
    61                         -Drootprefix=                   \
    62                         -Drootlibdir=/lib               \
    63                         -Dsplit-usr=true                \
    64                         -Dsulogin-path=/sbin/sulogin    \
    65                         -Dsysusers=false                \
    66                         -Dumount-path=/bin/umount       \
    67                         -Db_lto=false                   \
    68                         $PWD build</userinput></screen>
     52    <screen><userinput remap="configure">mkdir build
     53cd    build
     54
     55LANG=en_US.UTF-8                   \
     56meson --prefix=/usr                \
     57      --sysconfdir=/etc            \
     58      --localstatedir=/var         \
     59      -Dblkid=true                 \
     60      -Dbuildtype=release          \
     61      -Ddefault-dnssec=no          \
     62      -Dfirstboot=false            \
     63      -Dkill-path=/bin/kill        \
     64      -Dkmod-path=/bin/kmod        \
     65      -Dldconfig=false             \
     66      -Dmount-path=/bin/mount      \
     67      -Drootprefix=                \
     68      -Drootlibdir=/lib            \
     69      -Dsplit-usr=true             \
     70      -Dsulogin-path=/sbin/sulogin \
     71      -Dsysusers=false             \
     72      -Dumount-path=/bin/umount    \
     73      -Db_lto=false                \
     74      ..</userinput></screen>
    6975
    7076    <variablelist>
     
    142148    <para>Compile the package:</para>
    143149
    144 <screen><userinput remap="make">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz
    145 cd build
    146 LANG=en_US.UTF-8 ninja</userinput></screen>
     150<screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
    147151<!--
    148152    <para>To test the package, execute the following command:</para>
Note: See TracChangeset for help on using the changeset viewer.