mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
Various text updates
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19670 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
efcdd60c15
commit
e58667e606
@ -151,7 +151,9 @@ for link in `find . -type l`; do
|
||||
cp -pv $header $link
|
||||
chmod 644 $link
|
||||
done &&
|
||||
popd</userinput></screen>
|
||||
popd &&
|
||||
|
||||
chown -Rv root.root /usr/include/mozjs-38</userinput></screen>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -140,7 +140,7 @@ make</userinput></screen>
|
||||
|
||||
<seglistitem>
|
||||
<seg>
|
||||
None
|
||||
gusbcmd
|
||||
</seg>
|
||||
<seg>
|
||||
libgusb.so
|
||||
@ -157,6 +157,18 @@ make</userinput></screen>
|
||||
<?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>
|
||||
|
@ -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 .. &&
|
||||
|
@ -219,6 +219,10 @@ make docs-llvm-html docs-llvm-man</userinput></screen>
|
||||
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>
|
||||
|
@ -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 \
|
||||
|
@ -132,7 +132,6 @@ cd build &&
|
||||
|
||||
meson --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
-Dlibnm-gtk=true \
|
||||
-Dselinux=false \
|
||||
-Dteam=false &&
|
||||
ninja</userinput></screen>
|
||||
@ -145,19 +144,13 @@ ninja</userinput></screen>
|
||||
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>
|
||||
|
||||
<sect2 role="commands">
|
||||
<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>
|
||||
@ -175,11 +168,6 @@ sed 's@linm-glib@libnm-glib@' -i /usr/lib/pkgconfig/libnm-gtk.pc</userinput></sc
|
||||
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">
|
||||
|
@ -168,6 +168,12 @@ bunzip2 -v patchname.bz2</userinput></screen>
|
||||
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">
|
||||
|
@ -44,6 +44,14 @@
|
||||
<listitem>
|
||||
<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>
|
||||
|
@ -79,7 +79,6 @@
|
||||
|
||||
<bridgehead renderas="sect4">Required</bridgehead>
|
||||
<para role="required">
|
||||
<xref linkend="json-c"/> and
|
||||
<xref linkend="libsndfile"/>
|
||||
</para>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user