Changeset b534991
- Timestamp:
- 02/14/2004 09:01:53 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- b0e424f
- Parents:
- 58738de
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r58738de rb534991 11 11 12 12 <itemizedlist> 13 14 <listitem><para>February 14th, 2004 [bdubbs]: Added a security 15 patch to XFree86 and fixed a minor issue with the make 16 instruction.</para></listitem> 13 17 14 18 <listitem><para>February 11th, 2004 [igor]: Updated to -
x/installing/xfree86/xfree86-exp.xml
r58738de rb534991 2 2 <title>Command explanations</title> 3 3 4 <para><command>WORLDOPTS="" make World 2>&1 | tee xfree-compile.log</command>: 4 <para><command>( WORLDOPTS="" make World 2>&1 | tee xfree-compile.log 5 && exit $PIPESTATUS )</command>: 5 6 This 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>&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 8 encountering an error. <parameter>2>&1</parameter> redirects error messages 9 to the same location as normal output. The <command>tee</command> command 10 allows viewing of the output while logging the results to a file. The parentheses 11 around 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> 13 is returned as the result and not the result of the <command>tee</command> command.</para> 10 14 11 15 <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 206 206 207 207 208 <screen><userinput><command> WORLDOPTS="" make World 2>&1 | tee xfree-compile.log&&208 <screen><userinput><command>( WORLDOPTS="" make World 2>&1 | tee xfree-compile.log && exit $PIPESTATUS ) && 209 209 make install && 210 210 make install.man && -
x/installing/xfree86/xfree86-intro.xml
r58738de rb534991 53 53 </itemizedlist> 54 54 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> 57 64 58 65 <para>The first three packages are the <application>XFree86</application> programs, … … 77 84 this is the same filename as the sums for the main sources, so you need to rename the 78 85 file 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> 86 check 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> 81 89 82 90 <para>After unpacking the <filename>X430src-?.tgz</filename> files and uncompressing the 83 91 diff file, change to the <filename class="directory">xc</filename> directory and run:</para> 84 92 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> 86 97 87 98 </sect3>
Note:
See TracChangeset
for help on using the changeset viewer.