Changeset c63dde1 for BOOK/cross-tools


Ignore:
Timestamp:
Jan 31, 2009, 3:06:05 PM (16 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
a9a7398
Parents:
9ad863d
Message:

Use CAT to replace echo's whenever possible

Location:
BOOK/cross-tools
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/mips64/flags.xml

    r9ad863d rc63dde1  
    2323     xpointer="xpointer(//*[@os='c'])"/>
    2424
    25 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" &gt;&gt; ~/.bashrc
    26 echo export BUILDN32=\""${BUILDN32}\"" &gt;&gt; ~/.bashrc
    27 echo export BUILD64=\""${BUILD64}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     25<screen os="d"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     26export BUILD32="${BUILD32}"
     27export BUILDN32="${BUILDN32}"
     28export BUILD64="${BUILD64}"
     29EOF</userinput></screen>
    2830
    2931</sect1>
  • BOOK/cross-tools/multilib/flags.xml

    r9ad863d rc63dde1  
    2020  prevent issues if we stop and come back later:</para>
    2121
    22 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" &gt;&gt; ~/.bashrc
    23 echo export BUILD64=\""${BUILD64}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     22<screen os="d"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     23export BUILD32="${BUILD32}"
     24export BUILD64="${BUILD64}"
     25EOF</userinput></screen>
    2426
    2527</sect1>
  • BOOK/cross-tools/sparc64-64/flags.xml

    r9ad863d rc63dde1  
    2121   xpointer="xpointer(//*[@os='c'])"/>
    2222
    23 <screen os="d"><userinput>echo export BUILD64=\""${BUILD64}\"" &gt;&gt; ~/.bashrc
    24 echo export GCCTARGET=\""${GCCTARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     23<screen os="d"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     24export BUILD64="${BUILD64}"
     25export GCCTARGET="${GCCTARGET}"
     26EOF</userinput></screen>
    2527
    2628   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
  • BOOK/cross-tools/sparc64/flags.xml

    r9ad863d rc63dde1  
    2222   xpointer="xpointer(//*[@os='c'])"/>
    2323
    24 <screen os="d"><userinput>echo export BUILD32=\""${BUILD32}\"" &gt;&gt; ~/.bashrc
    25 echo export BUILD64=\""${BUILD64}\"" &gt;&gt; ~/.bashrc
    26 echo export GCCTARGET=\""${GCCTARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     24<screen os="d"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     25export BUILD32="${BUILD32}"
     26export BUILD64="${BUILD64}"
     27export GCCTARGET="${GCCTARGET}"
     28EOF</userinput></screen>
    2729
    2830  <para os="e">The following table gives the entires for different Sparc 64 capable
  • BOOK/cross-tools/x86/variables.xml

    r9ad863d rc63dde1  
    3838  case you have to exit and restart building later:</para>
    3939
    40 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" &gt;&gt; ~/.bashrc
    41 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     40<screen os="f"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     41export CLFS_HOST="${CLFS_HOST}"
     42export CLFS_TARGET="${CLFS_TARGET}"
     43EOF</userinput></screen>
    4244
    4345  <table os="g">
  • BOOK/cross-tools/x86_64/variables.xml

    r9ad863d rc63dde1  
    3737    xpointer="xpointer(//*[@os='e'])"/>
    3838
    39 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" &gt;&gt; ~/.bashrc
    40 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc
    41 echo export CLFS_TARGET32=\""${CLFS_TARGET32}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     39<screen os="f"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     40export CLFS_HOST="${CLFS_HOST}"
     41export CLFS_TARGET="${CLFS_TARGET}"
     42export CLFS_TARGET32="${CLFS_TARGET32}"
     43EOF</userinput></screen>
    4244
    4345</sect1>
Note: See TracChangeset for help on using the changeset viewer.