Fix command explanations for meson build of network-manager applet.

Add missing parameter required for gnome-shell.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19563 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
DJ Lucas 2017-12-01 04:48:51 +00:00
parent 7a90fe5a11
commit 1e3c9bf249

View File

@ -130,10 +130,11 @@
<screen><userinput>mkdir build &amp;&amp;
cd build &amp;&amp;
meson --prefix=/usr \
--sysconfdir=/etc \
-Denable-selinux=false \
-Denable-team=false &amp;&amp;
meson --prefix=/usr \
--sysconfdir=/etc \
-Denable-libnm-gtk=true \
-Denable-selinux=false \
-Denable-team=false &amp;&amp;
ninja</userinput></screen>
<para>
@ -150,34 +151,27 @@ ninja</userinput></screen>
<sect2 role="commands">
<title>Command Explanations</title>
<!--
<para>
<option>- -disable-migration</option>: This switch disables
building of the <application>NetworkManager Applet</application>
<application>GConf</application> migration tool which is
not necessary for BLFS.
<parameter>-Denable-libnm-gtk=true</parameter>: This switch enables build
of the legacy libnm-gtk (required for <application>Gnome</application>).
</para>
-->
<!-- Complained that it was an unrecognized option. -renodr -->
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
href="../../xincludes/static-libraries.xml"/>
<para>
<parameter>--without-team</parameter>: This switch disables the team
<parameter>-Denable-team=false</parameter>: This switch disables the team
configuration editor since it requires <application>Jansson</application>
which is not currently in BLFS.
</para>
<para>
<parameter>--without-selinux</parameter>: This switch forcibly disables
<application>SELinux</application> support since it is not currently in
BLFS and the build will fail without it.
<parameter>-Denable-selinux=false</parameter>: This switch forcibly
disables <application>SELinux</application> support since it is not
currently in BLFS and the build will fail without it.
</para>
<para>
<option>--without-wwan</option>: This switch disables WWAN support. Use
this if you do not have <xref linkend="ModemManager"/> installed.
<option>-Denable-wwan=flase</option>: This switch disables WWAN support.
Use this if you do not have <xref linkend="ModemManager"/> installed.
</para>
</sect2>