Ignore:
Timestamp:
02/18/2013 03:35:44 AM (11 years ago)
Author:
Randy McMurchy <randy@…>
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:
06de117e
Parents:
3d9adc39
Message:

Minor fixes

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/filesystems/parted.xml

    r3d9adc39 r9ca304a  
    8282
    8383<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    84 make</userinput></screen>
     84make &amp;&amp;
     85
     86make -C doc html                                       &amp;&amp;
     87makeinfo --html      -o doc/html       doc/parted.texi &amp;&amp;
     88makeinfo --plaintext -o doc/parted.txt doc/parted.texi</userinput></screen>
     89
     90    <para>If you have <xref linkend="texlive"/> installed and wish to create
     91    PDF and Postcript documentation issue the following commands:</para>
     92
     93<screen><userinput>texi2pdf             -o doc/parted.pdf doc/parted.texi &amp;&amp;
     94texi2dvi             -o doc/parted.dvi doc/parted.texi &amp;&amp;
     95dvips                -o doc/parted.ps  doc/parted.dvi</userinput></screen>
    8596
    8697    <para>To test the results, issue: <command>make check</command>.</para>
     
    90101    </para>
    91102
    92 <screen role="root"><userinput>make install</userinput></screen>
     103<screen role="root"><userinput>make install &amp;&amp;
     104install -v -m755 -d /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/html &amp;&amp;
     105install -v -m644    doc/html/* \
     106                    /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/html &amp;&amp;
     107install -v -m644    doc/{FAT,API,parted.{txt,html}} \
     108                    /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION</userinput></screen>
     109
     110    <para>Install the optional PDF and Postscript documentation by issuing
     111    the following command as the <systemitem class="username">root</systemitem>
     112    user:</para>
     113
     114<screen role="root"><userinput>install -v -m644 doc/FAT doc/API doc/parted.{pdf,ps,dvi} \
     115                    /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}</userinput></screen>
    93116  </sect2>
    94117
Note: See TracChangeset for help on using the changeset viewer.