Changeset cc8d737 in clfs-sysroot for BOOK/cross-tools


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

Use cat instead of echo wherever possible.

Location:
BOOK/cross-tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • BOOK/cross-tools/arm/variables.xml

    r47dadc6 rcc8d737  
    3535  case you have to exit and restart building later:</para>
    3636
    37 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" &gt;&gt; ~/.bashrc
    38 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" &gt;&gt; ~/.bashrc</userinput></screen>
     37<screen os="f"><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     38export CLFS_HOST="${CLFS_HOST}"
     39export CLFS_TARGET="${CLFS_TARGET}"
     40EOF</userinput></screen>
    3941
    4042</sect1>
  • BOOK/cross-tools/common/cflags.xml

    r47dadc6 rcc8d737  
    2323  case you have to exit and restart building later:</para>
    2424
    25 <screen><userinput>echo unset CFLAGS &gt;&gt; ~/.bashrc
    26 echo unset CXXFLAGS &gt;&gt; ~/.bashrc</userinput></screen>
     25<screen><userinput>cat &gt;&gt; ~/.bashrc &lt;&lt; EOF
     26unset CFLAGS
     27unset CXXFLAGS
     28EOF</userinput></screen>
    2729
    2830</sect1>
  • BOOK/cross-tools/common/glibc.xml

    r47dadc6 rcc8d737  
    8181    <filename>configparms</filename> to adjust installation paths:</para>
    8282
    83 <screen os="g"><userinput>echo "install_root=${CLFS}" &gt; configparms</userinput></screen>
     83<screen os="g"><userinput>cat &gt; configparms &lt;&lt; EOF
     84install_root=${CLFS}
     85EOF</userinput></screen>
    8486
    8587    <para os="h">Prepare Glibc for compilation:</para>
  • BOOK/cross-tools/common/shadow.xml

    r47dadc6 rcc8d737  
    2323    make sure that the <filename>passwd</filename> program is found:</para>
    2424
    25 <screen><userinput>echo "shadow_cv_passwd_dir=${CLFS}/bin" &gt; config.cache</userinput></screen>
     25<screen><userinput>cat &gt; config.cache &lt;&lt; EOF
     26shadow_cv_passwd_dir=${CLFS}/bin"
     27EOF</userinput></screen>
    2628
    2729    <para>The following value causes Shadow to use its internal lckpwdf
     
    2931    attempt to modify the host system:</para>
    3032
    31 <screen><userinput>echo "ac_cv_func_lckpwdf=no" &gt;&gt; config.cache</userinput></screen>
     33<screen><userinput>cat &gt; config.cache &lt;&lt; EOF
     34ac_cv_func_lckpwdf=no
     35EOF</userinput></screen>
    3236
    3337    <para>Prepare Shadow for compilation:</para>
Note: See TracChangeset for help on using the changeset viewer.