Changeset cc8d737 in clfs-sysroot for BOOK/final-system/common/variables.xml


Ignore:
Timestamp:
Mar 15, 2009, 7:07:43 PM (15 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
master
Children:
8909252
Parents:
47dadc6
Message:

Use cat instead of echo wherever possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/common/variables.xml

    r47dadc6 rcc8d737  
    2525  prevent issues if you stop and come back later:</para>
    2626
    27 <screen><userinput>echo export CC=\""${CC}\"" &gt;&gt; ~/.bashrc
    28 echo export CXX=\""${CXX}\"" &gt;&gt; ~/.bashrc
    29 echo export AR=\""${AR}\"" &gt;&gt; ~/.bashrc
    30 echo export AS=\""${AS}\"" &gt;&gt; ~/.bashrc
    31 echo export RANLIB=\""${RANLIB}\"" &gt;&gt; ~/.bashrc
    32 echo export LD=\""${LD}\"" &gt;&gt; ~/.bashrc
    33 echo export STRIP=\""${STRIP}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     27<screen><userinput>cat &gt; config.cache &lt;&lt; EOF
     28export CC="${CC}"
     29export CXX="${CXX}"
     30export AR="${AR}"
     31export AS="${AS}"
     32export RANLIB="${RANLIB}"
     33export LD="${LD}"
     34export STRIP="${STRIP}"
     35EOF</userinput></screen>
    3436
    3537</sect1>
Note: See TracChangeset for help on using the changeset viewer.