Ignore:
Timestamp:
05/08/2012 01:40:42 AM (12 years ago)
Author:
Krejzi <krejzi@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
9bbd056
Parents:
d74470c7
Message:

Fix libtirpc build instructions to avoid .la file weirdness. Add new parameter to pciutils make command and recommend librsvg for eog.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@10115 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/pciutils.xml

    rd74470c7 rc503fad7  
    6666    <title>Installation of PCI Utilities</title>
    6767
    68     <para>First, fix a minor script error.  If you want to compress the PCI
    69     data, use 1 instead of 0 in the instruction below.  The uncompressed data
    70     is currently about 710KB.</para>
    71 
    72 <screen><userinput>sed -i -e 's/^PCI_COMPRESSED_IDS=/&amp;0/' update-pciids.sh </userinput></screen>
    73 
    74     <para>Install <application>PCI Utilities</application> by
    75     running the following commands:</para>
     68    <para>
     69      Install <application>PCI Utilities</application> by
     70      running the following commands:
     71    </para>
    7672
    7773<screen><userinput>make PREFIX=/usr MANDIR=/usr/share/man \
    78      ZLIB=no SHARED=yes all</userinput></screen>
     74     ZLIB=no SHARED=yes PCI_COMPRESSED_IDS=0 all</userinput></screen>
    7975
    80     <para>This package does not come with a test suite.</para>
     76    <para>
     77      This package does not come with a test suite.
     78    </para>
    8179
    82     <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     80    <para>
     81      Now, as the <systemitem class="username">root</systemitem> user:
     82    </para>
    8383
    84 <screen role="root"><userinput>make PREFIX=/usr MANDIR=/usr/share/man SHARED=yes \
     84<screen role="root"><userinput>make PREFIX=/usr MANDIR=/usr/share/man \
     85     ZLIB=no SHARED=yes PCI_COMPRESSED_IDS=0 \
    8586     install install-lib</userinput></screen>
    8687
     
    9091    <title>Command Explanations</title>
    9192
    92     <para><parameter>ZLIB=no</parameter>: This parameter prevents compression of
    93     the <filename>pci.ids</filename> file.</para>
     93    <para>
     94      <parameter>ZLIB=no</parameter>: This parameter prevents compression of
     95      the <filename>pci.ids</filename> file.
     96    </para>
    9497
    95     <para><parameter>SHARED=yes</parameter>: This parameter enables building of
    96     shared library instead of static one.</para>
     98    <para>
     99      <parameter>SHARED=yes</parameter>: This parameter enables building of
     100      shared library instead of static one.
     101    </para>
     102
     103    <para>
     104      <parameter>PCI_COMPRESSED_IDS=0</parameter>: This parameter ensures
     105      that compression won't be used when updating <filename>pci.ids</filename>.
     106    </para>
    97107
    98108  </sect2>
Note: See TracChangeset for help on using the changeset viewer.