Changeset 65df7b1 in clfs-sysroot


Ignore:
Timestamp:
Sep 15, 2006, 5:36:32 PM (18 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
master
Children:
3cf7854
Parents:
5ae7889
Message:

Change occurences of to $\{VARIABLE\} for consistency

Location:
BOOK
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • BOOK/bootable/common/chowning.xml

    r5ae7889 r65df7b1  
    1919    <para>The commands in the remainder of this book must be performed while
    2020    logged in as <systemitem class="username">root</systemitem>. Check that
    21     $CLFS is still set:</para>
     21    ${CLFS} is still set:</para>
    2222
    23     <screen><userinput>echo $CLFS</userinput></screen>
     23    <screen><userinput>echo ${CLFS}</userinput></screen>
    2424
    2525  </important>
  • BOOK/final-preps/aboutclfs.xml

    r5ae7889 r65df7b1  
    1616  Check that the <envar>CLFS</envar> variable is set up properly with:</para>
    1717
    18 <screen><userinput>echo $CLFS</userinput></screen>
     18<screen><userinput>echo ${CLFS}</userinput></screen>
    1919
    2020  <para>Make sure the output shows the path to the CLFS partition's mount
     
    2626
    2727  <para>Having this variable set is beneficial in that commands such as
    28   <command>install -d $CLFS/tools</command> can be typed literally. The shell
    29   will automatically replace <quote>$CLFS</quote> with
     28  <command>install -d ${CLFS}/tools</command> can be typed literally. The shell
     29  will automatically replace <quote>${CLFS}</quote> with
    3030  <quote>/mnt/clfs</quote> (or whatever the variable was set to) when it
    3131  processes the command line.</para>
    3232
    33   <para>If you haven't created the <filename class="directory">$CLFS</filename>
     33  <para>If you haven't created the <filename class="directory">${CLFS}</filename>
    3434  directory, do so at this time by issuing the following commands:</para>
    3535
    36 <screen><userinput>install -dv $CLFS</userinput></screen>
     36<screen><userinput>install -dv ${CLFS}</userinput></screen>
    3737
    38   <para>Do not forget to check that <envar>$CLFS</envar> is set whenever
     38  <para>Do not forget to check that <envar>${CLFS}</envar> is set whenever
    3939  you leave and reenter the current working environment (as when doing a
    4040  <quote>su</quote> to <systemitem class="username">root</systemitem> or
  • BOOK/final-preps/addinguser.xml

    r5ae7889 r65df7b1  
    7979
    8080  <para>Grant <systemitem class="username">clfs</systemitem> full access to
    81   <filename class="directory">$CLFS</filename> by making <systemitem
     81  <filename class="directory">${CLFS}</filename> by making <systemitem
    8282  class="username">clfs</systemitem> the directory's owner:</para>
    8383
    84 <screen><userinput>chown -Rv clfs $CLFS</userinput></screen>
     84<screen><userinput>chown -Rv clfs ${CLFS}</userinput></screen>
    8585
    8686  <para>Next, login as user <systemitem class="username">clfs</systemitem>.
  • BOOK/final-preps/creatingdirs.xml

    r5ae7889 r65df7b1  
    2525mkdir -pv ${CLFS}/usr/{,local/}share/man/man{1,2,3,4,5,6,7,8}
    2626for dir in ${CLFS}/usr{,/local}; do
    27   ln -sv share/{man,doc,info} $dir
     27  ln -sv share/{man,doc,info} ${dir}
    2828done</userinput></screen>
    2929
  • BOOK/final-preps/settingenviron.xml

    r5ae7889 r65df7b1  
    1717
    1818<screen os="b"><userinput>cat &gt; ~/.bash_profile &lt;&lt; "EOF"
    19 <literal>exec env -i HOME=$HOME TERM=$TERM PS1='\u:\w\$ ' /bin/bash</literal>
     19<literal>exec env -i HOME=${HOME} TERM=${TERM} PS1='\u:\w\$ ' /bin/bash</literal>
    2020EOF</userinput></screen>
    2121
  • BOOK/final-system/common/bison.xml

    r5ae7889 r65df7b1  
    3232    <para os="b1">The configure system causes bison to be built without support
    3333    for internationalization of error messages if a <command>bison</command>
    34     program is not already in $PATH.  The following addition will correct
     34    program is not already in ${PATH}.  The following addition will correct
    3535    this:</para>
    3636
  • BOOK/final-system/common/texinfo.xml

    r5ae7889 r65df7b1  
    7474rm dir
    7575for f in *
    76 do install-info $f dir 2&gt;/dev/null
     76do install-info ${f} dir 2&gt;/dev/null
    7777done</userinput></screen>
    7878
  • BOOK/introduction/common/askforhelp.xml

    r5ae7889 r65df7b1  
    4747      </listitem>
    4848      <listitem>
    49         <para>The value of the $CLFS_HOST, $CLFS_TARGET, $BUILD32, and $BUILD64
     49        <para>The value of the ${CLFS_HOST}, ${CLFS_TARGET}, ${BUILD32}, and ${BUILD64}
    5050        environment variables.</para>
    5151      </listitem>
  • BOOK/materials/common/introduction.xml

    r5ae7889 r65df7b1  
    3030  that is conveniently available throughout the entire build. A working
    3131  directory is also required to unpack the sources and build them.
    32   <filename class="directory">$CLFS/sources</filename> can be used both
     32  <filename class="directory">${CLFS}/sources</filename> can be used both
    3333  as the place to store the tarballs and patches and as a working
    3434  directory. By using this directory, the required elements will be
     
    4040  starting the download session:</para>
    4141
    42 <screen><userinput>mkdir -v $CLFS/sources</userinput></screen>
     42<screen><userinput>mkdir -v ${CLFS}/sources</userinput></screen>
    4343
    4444  <para>Make this directory writable and sticky. When a directory is
     
    4848  write and sticky modes:</para>
    4949
    50 <screen><userinput>chmod -v a+wt $CLFS/sources</userinput></screen>
     50<screen><userinput>chmod -v a+wt ${CLFS}/sources</userinput></screen>
    5151
    5252</sect1>
  • BOOK/partitioning/common/mounting.xml

    r5ae7889 r65df7b1  
    2626  running:</para>
    2727
    28 <screen><userinput>mkdir -pv $CLFS
    29 mount -v /dev/<replaceable>[xxx]</replaceable> $CLFS</userinput></screen>
     28<screen><userinput>mkdir -pv ${CLFS}
     29mount -v /dev/<replaceable>[xxx]</replaceable> ${CLFS}</userinput></screen>
    3030
    3131  <para>Replace <replaceable>[xxx]</replaceable> with the designation of
     
    3636  class="directory">/usr</filename>), mount them using:</para>
    3737
    38 <screen><userinput>mkdir -pv $CLFS
    39 mount -v /dev/<replaceable>[xxx]</replaceable> $CLFS
    40 mkdir -v $CLFS/usr
    41 mount -v /dev/<replaceable>[yyy]</replaceable> $CLFS/usr</userinput></screen>
     38<screen><userinput>mkdir -pv ${CLFS}
     39mount -v /dev/<replaceable>[xxx]</replaceable> ${CLFS}
     40mkdir -v ${CLFS}/usr
     41mount -v /dev/<replaceable>[yyy]</replaceable> ${CLFS}/usr</userinput></screen>
    4242
    4343  <para>Replace <replaceable>[xxx]</replaceable> and
  • BOOK/prologue/common/typography.xml

    r5ae7889 r65df7b1  
    4040  and websites.</para>
    4141
    42 <screen role="nodump"><userinput>cat &gt; $CLFS/etc/group &lt;&lt; "EOF"
     42<screen role="nodump"><userinput>cat &gt; ${CLFS}/etc/group &lt;&lt; "EOF"
    4343<literal>root:x:0:
    4444bin:x:1:
     
    4848  <para>This format is used when creating configuration files. The first
    4949  command tells the system to create the file
    50   <filename>$CLFS/etc/group</filename> from whatever is typed on the
     50  <filename>${CLFS}/etc/group</filename> from whatever is typed on the
    5151  following lines until the sequence end of file (EOF) is encountered.
    5252  Therefore, this entire section is generally typed as seen.</para>
Note: See TracChangeset for help on using the changeset viewer.