Author: bdubbs
Date: Fri Jan 12 19:33:35 2018
New Revision: 19670
Log:
Various text updates
Modified:
trunk/BOOK/general/genlib/js38.xml
trunk/BOOK/general/genlib/libgusb.xml
trunk/BOOK/general/graphlib/libtiff.xml
trunk/BOOK/general/prog/llvm.xml
trunk/BOOK/general/sysutils/systemd.xml
trunk/BOOK/gnome/applications/network-manager-applet.xml
trunk/BOOK/introduction/important/building-notes.xml
trunk/BOOK/introduction/welcome/changelog.xml
trunk/BOOK/multimedia/libdriv/pulseaudio.xml
Modified: trunk/BOOK/general/genlib/js38.xml
==============================================================================
--- trunk/BOOK/general/genlib/js38.xml Fri Jan 12 15:23:30 2018 (r19669)
+++ trunk/BOOK/general/genlib/js38.xml Fri Jan 12 19:33:35 2018 (r19670)
@@ -151,7 +151,9 @@
cp -pv $header $link
chmod 644 $link
done &&
-popd</userinput></screen>
+popd &&
+
+chown -Rv root.root /usr/include/mozjs-38</userinput></screen>
</sect2>
Modified: trunk/BOOK/general/genlib/libgusb.xml
==============================================================================
--- trunk/BOOK/general/genlib/libgusb.xml Fri Jan 12 15:23:30 2018
(r19669)
+++ trunk/BOOK/general/genlib/libgusb.xml Fri Jan 12 19:33:35 2018
(r19670)
@@ -140,7 +140,7 @@
<seglistitem>
<seg>
- None
+ gusbcmd
</seg>
<seg>
libgusb.so
@@ -157,6 +157,18 @@
<?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?>
+ <varlistentry id="gusbcmd">
+ <term><command>gusbcmd</command></term>
+ <listitem>
+ <para>
+ is a debugging tool for the libgusb library.
+ </para>
+ <indexterm zone="libgusb gusbcmd">
+ <primary sortas="b-gusbcmd">gusbcmd</primary>
+ </indexterm>
+ </listitem>
+ </varlistentry>
+
<varlistentry id="libgusb-lib">
<term><filename class="libraryfile">libgusb.so</filename></term>
<listitem>
Modified: trunk/BOOK/general/graphlib/libtiff.xml
==============================================================================
--- trunk/BOOK/general/graphlib/libtiff.xml Fri Jan 12 15:23:30 2018
(r19669)
+++ trunk/BOOK/general/graphlib/libtiff.xml Fri Jan 12 19:33:35 2018
(r19670)
@@ -112,7 +112,7 @@
<!-- "build" exists in the source tree -->
<screen><userinput>mkdir -p libtiff-build &&
-cd libtiff-build &&
+cd libtiff-build &&
cmake -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/libtiff-4.0.9 \
-DCMAKE_INSTALL_PREFIX=/usr -G Ninja .. &&
Modified: trunk/BOOK/general/prog/llvm.xml
==============================================================================
--- trunk/BOOK/general/prog/llvm.xml Fri Jan 12 15:23:30 2018 (r19669)
+++ trunk/BOOK/general/prog/llvm.xml Fri Jan 12 19:33:35 2018 (r19670)
@@ -219,6 +219,10 @@
processors/threads available.
Note that the several Sanitizer tests (9 of 26479) are known to fail.
<!-- Still true for v 5.0.0 -->
+
+ <note><simpara>The checks create device nodes in the /tmp directory. The
+ tests will fail if /tmp is mounted with the nodev
+ option.</simpara></note>
</para>
<para>
Modified: trunk/BOOK/general/sysutils/systemd.xml
==============================================================================
--- trunk/BOOK/general/sysutils/systemd.xml Fri Jan 12 15:23:30 2018
(r19669)
+++ trunk/BOOK/general/sysutils/systemd.xml Fri Jan 12 19:33:35 2018
(r19670)
@@ -126,9 +126,9 @@
following commands:
</para>
-<screen><userinput>meson --prefix /usr \
- --sysconfdir /etc \
- --localstatedir /var \
+<screen><userinput>meson --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
-Dblkid=true \
-Dbuildtype=release \
-Ddefault-dnssec=no \
Modified: trunk/BOOK/gnome/applications/network-manager-applet.xml
==============================================================================
--- trunk/BOOK/gnome/applications/network-manager-applet.xml Fri Jan 12
15:23:30 2018 (r19669)
+++ trunk/BOOK/gnome/applications/network-manager-applet.xml Fri Jan 12
19:33:35 2018 (r19670)
@@ -132,7 +132,6 @@
meson --prefix=/usr \
--sysconfdir=/etc \
- -Dlibnm-gtk=true \
-Dselinux=false \
-Dteam=false &&
ninja</userinput></screen>
@@ -145,8 +144,7 @@
Now, as the <systemitem class="username">root</systemitem> user:
</para>
-<screen role="root"><userinput>ninja install &&
-sed 's@linm-glib@libnm-glib@' -i
/usr/lib/pkgconfig/libnm-gtk.pc</userinput></screen>
+<screen role="root"><userinput>ninja install</userinput></screen>
</sect2>
@@ -154,11 +152,6 @@
<title>Command Explanations</title>
<para>
- <parameter>-Denable-libnm-gtk=true</parameter>: This switch enables build
- of the legacy libnm-gtk (required for <application>Gnome</application>).
- </para>
-
- <para>
<parameter>-Denable-team=false</parameter>: This switch disables the team
configuration editor since it requires <application>Jansson</application>
which is not currently in BLFS.
@@ -175,11 +168,6 @@
Use this if you do not have <xref linkend="ModemManager"/> installed.
</para>
- <para>
- <command>sed 's@linm-glib@libnm-glib@'</command>: Fix an error in the
- install <application>pkg-config</application> file.
- </para>
-
</sect2>
<sect2 role="content">
Modified: trunk/BOOK/introduction/important/building-notes.xml
==============================================================================
--- trunk/BOOK/introduction/important/building-notes.xml Fri Jan 12
15:23:30 2018 (r19669)
+++ trunk/BOOK/introduction/important/building-notes.xml Fri Jan 12
19:33:35 2018 (r19670)
@@ -168,6 +168,12 @@
single processor build. Adding '-j1' to a make command will override
the similar setting in the MAKEFLAGS environment variable.</para>
+ <note><para>When running the package tests or the install portion of the
+ package build process, we do not recommend using an option greater than
+ '-j1' unless specified otherwise. The installation procedures or checks
+ have not been validated using parallel procedures and may fail with issues
+ that are difficult to debug.</para></note>
+
</sect2>
<sect2 id="automating-builds" xreflabel="Automated Building Procedures">
Modified: trunk/BOOK/introduction/welcome/changelog.xml
==============================================================================
--- trunk/BOOK/introduction/welcome/changelog.xml Fri Jan 12 15:23:30
2018 (r19669)
+++ trunk/BOOK/introduction/welcome/changelog.xml Fri Jan 12 19:33:35
2018 (r19670)
@@ -45,6 +45,14 @@
<para>January 12th, 2018</para>
<itemizedlist>
<listitem>
+ <para>[bdubbs] - Various text updates. Fixes
+ <ulink url="&blfs-ticket-root;10248">#10248</ulink>.</para>
+ </listitem>
+ <listitem>
+ <para>[bdubbs] - Update to wireshark-2.4.4. Fixes
+ <ulink url="&blfs-ticket-root;10254">#10254</ulink>.</para>
+ </listitem>
+ <listitem>
<para>[bdubbs] - Update to gtk+2 2.24.32. Fixes
<ulink url="&blfs-ticket-root;10244">#10244</ulink>.</para>
</listitem>
Modified: trunk/BOOK/multimedia/libdriv/pulseaudio.xml
==============================================================================
--- trunk/BOOK/multimedia/libdriv/pulseaudio.xml Fri Jan 12 15:23:30
2018 (r19669)
+++ trunk/BOOK/multimedia/libdriv/pulseaudio.xml Fri Jan 12 19:33:35
2018 (r19670)
@@ -79,7 +79,6 @@
<bridgehead renderas="sect4">Required</bridgehead>
<para role="required">
- <xref linkend="json-c"/> and
<xref linkend="libsndfile"/>
</para>
--
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page