Changeset dc53944 for x


Ignore:
Timestamp:
08/17/2014 06:21:21 PM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, 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, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
feb1a649
Parents:
73c535d7
Message:

Reference bash startup section in xorg intro

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/xorg7.xml

    r73c535d7 rdc53944  
    7979  user that will be building the xorg packages.</para>
    8080
    81   <!--
    82   <para>The commands below
    83   (or similar) can be entered at the command line to compile each
    84   section (proto, util, lib, app, driver).  The wiki links on each
    85   section's page contain specific commands to compile the entire group of
    86   packages, based on the content of the wget files.</para>
    87 
    88 <screen>bash -e #exit on all errors
    89 section=<replaceable>&lt;proto&gt;</replaceable>
    90 version=&xorg-version;
    91 mkdir $section
    92 cd $section
    93 
    94 # download and check packages
    95 grep -v '^#' ../${section}-${version}.wget | wget -i- -c \
    96     -B http://xorg.freedesktop.org/releases/individual/${section}/
    97 md5sum -c ../${section}-${version}.md5
    98 
    99 # build packages
    100 for package in $(grep -v '^#' ../${section}-${version}.wget)
    101 do
    102   packagedir=$(echo $package | sed 's/.tar.bz2//')
    103   tar -xf $package
    104   cd $packagedir
    105   ./configure $XORG_CONFIG
    106   make
    107   make install
    108   cd ..
    109   rm -rf $packagedir
    110 done 2&gt;&amp;1 | tee -a ../xorg-${section}-compile.log #log the entire loop</screen>
    111 
    112   <para>The above shell will exit immediately on error.  If it runs to
    113   completion, you should manually exit the shell before continuing on to
    114   the next set of instructions.</para>
    115 -->
    116 
    11781  <sect2 id="xorg-env" xreflabel="Xorg build environment">
    11882    <title>Setting up the Xorg Build Environment</title>
     83
     84    <note><para>The following instructions assume that the shell
     85    startup files have been set up as described in
     86    <xref linkend="postlfs-config-profile" />.
     87    </para></note>
    11988
    12089    <para>First, you'll need to create a working directory:</para>
Note: See TracChangeset for help on using the changeset viewer.