Changeset b534991 for x/installing


Ignore:
Timestamp:
02/14/2004 09:01:53 PM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b0e424f
Parents:
58738de
Message:

Security patch and minor make instruction update for XFree86

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

Location:
x/installing/xfree86
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • x/installing/xfree86/xfree86-exp.xml

    r58738de rb534991  
    22<title>Command explanations</title>
    33
    4 <para><command>WORLDOPTS="" make World 2&gt;&amp;1 | tee xfree-compile.log</command>:
     4<para><command>( WORLDOPTS="" make World 2&gt;&amp;1 | tee xfree-compile.log
     5   &amp;&amp; exit $PIPESTATUS )</command>:
    56This command runs multiple makefiles to completely rebuild the system.
    6 <envar>WORLDOPTS</envar>="" disables the default setting to continue after encountering an error.
    7 <parameter>2&gt;&amp;1</parameter> redirects error messages to the same location
    8 as normal output. The <command>tee</command> command allows viewing of
    9 the output while logging the results to a file.</para>
     7<envar>WORLDOPTS</envar>="" disables the default setting to continue after
     8encountering an error. <parameter>2&gt;&amp;1</parameter> redirects error messages
     9to the same location as normal output. The <command>tee</command> command
     10allows viewing of the output while logging the results to a file. The parentheses
     11around the command run the entire comand in a subshell and finally the
     12<command>exit $PIPESTATUS</command> ensures the result of the <command>make</command>
     13is returned as the result and not the result of the <command>tee</command> command.</para>
    1014
    1115<note><para>When rebuilding <application>XFree86</application>, a separate command that may be used if only minor
  • x/installing/xfree86/xfree86-inst.xml

    r58738de rb534991  
    206206
    207207
    208 <screen><userinput><command>WORLDOPTS="" make World 2&gt;&amp;1 | tee xfree-compile.log &amp;&amp;
     208<screen><userinput><command>( WORLDOPTS="" make World 2&gt;&amp;1 | tee xfree-compile.log &amp;&amp; exit $PIPESTATUS ) &amp;&amp;
    209209make install &amp;&amp;
    210210make install.man &amp;&amp;
  • x/installing/xfree86/xfree86-intro.xml

    r58738de rb534991  
    5353</itemizedlist>
    5454
    55 <para>You should also download the patch file:
    56 <ulink url="ftp://ftp.xfree86.org/pub/XFree86/4.3.0/fixes/4.3.0-4.3.0.1.diff.gz" /></para>
     55<para>You should also download the patch files:</para>
     56<itemizedlist spacing='compact'>
     57<listitem><para>
     58  <ulink url="ftp://ftp.xfree86.org/pub/XFree86/4.3.0/fixes/4.3.0-4.3.0.1.diff.gz" />
     59  </para></listitem>
     60<listitem><para>
     61  <ulink url="ftp://ftp.xfree86.org/pub/XFree86/4.3.0/fixes/fontfile.diff" />
     62  </para></listitem>
     63</itemizedlist>
    5764
    5865<para>The first three packages are the <application>XFree86</application> programs,
     
    7784this is the same filename as the sums for the main sources, so you need to rename the
    7885file if you download it.  Otherwise, you can just look at it and use it to
    79 check against the patch file:</para>
    80 <screen><userinput><command>md5sum 4.3.0-4.3.0.1.diff.gz</command></userinput></screen>
     86check against the patch files:</para>
     87<screen><userinput><command>md5sum 4.3.0-4.3.0.1.diff.gz</command></userinput>
     88<userinput><command>md5sum fontfile.diff</command></userinput></screen>
    8189
    8290<para>After unpacking the <filename>X430src-?.tgz</filename> files and uncompressing the
    8391diff file, change to the <filename class="directory">xc</filename> directory and run:</para>
    8492
    85 <screen><userinput><command>patch -Np1 -i ../4.3.0-4.3.0.1.diff</command></userinput></screen>
     93<screen><userinput><command>patch -Np1 -i ../4.3.0-4.3.0.1.diff</command></userinput>
     94<userinput><command>pushd  lib/font/fontfile/</command></userinput>
     95<userinput><command>patch -N -i ../../../../fontfile.diff</command></userinput>
     96<userinput><command>popd</command></userinput></screen>
    8697
    8798</sect3>
Note: See TracChangeset for help on using the changeset viewer.