Changeset cc8d737 in clfs-sysroot for BOOK/cross-tools
- Timestamp:
- Mar 15, 2009, 7:07:43 PM (16 years ago)
- Branches:
- master
- Children:
- 8909252
- Parents:
- 47dadc6
- Location:
- BOOK/cross-tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/arm/variables.xml
r47dadc6 rcc8d737 35 35 case you have to exit and restart building later:</para> 36 36 37 <screen os="f"><userinput>echo export CLFS_HOST=\""${CLFS_HOST}\"" >> ~/.bashrc 38 echo export CLFS_TARGET=\""${CLFS_TARGET}\"" >> ~/.bashrc</userinput></screen> 37 <screen os="f"><userinput>cat >> ~/.bashrc << EOF 38 export CLFS_HOST="${CLFS_HOST}" 39 export CLFS_TARGET="${CLFS_TARGET}" 40 EOF</userinput></screen> 39 41 40 42 </sect1> -
BOOK/cross-tools/common/cflags.xml
r47dadc6 rcc8d737 23 23 case you have to exit and restart building later:</para> 24 24 25 <screen><userinput>echo unset CFLAGS >> ~/.bashrc 26 echo unset CXXFLAGS >> ~/.bashrc</userinput></screen> 25 <screen><userinput>cat >> ~/.bashrc << EOF 26 unset CFLAGS 27 unset CXXFLAGS 28 EOF</userinput></screen> 27 29 28 30 </sect1> -
BOOK/cross-tools/common/glibc.xml
r47dadc6 rcc8d737 81 81 <filename>configparms</filename> to adjust installation paths:</para> 82 82 83 <screen os="g"><userinput>echo "install_root=${CLFS}" > configparms</userinput></screen> 83 <screen os="g"><userinput>cat > configparms << EOF 84 install_root=${CLFS} 85 EOF</userinput></screen> 84 86 85 87 <para os="h">Prepare Glibc for compilation:</para> -
BOOK/cross-tools/common/shadow.xml
r47dadc6 rcc8d737 23 23 make sure that the <filename>passwd</filename> program is found:</para> 24 24 25 <screen><userinput>echo "shadow_cv_passwd_dir=${CLFS}/bin" > config.cache</userinput></screen> 25 <screen><userinput>cat > config.cache << EOF 26 shadow_cv_passwd_dir=${CLFS}/bin" 27 EOF</userinput></screen> 26 28 27 29 <para>The following value causes Shadow to use its internal lckpwdf … … 29 31 attempt to modify the host system:</para> 30 32 31 <screen><userinput>echo "ac_cv_func_lckpwdf=no" >> config.cache</userinput></screen> 33 <screen><userinput>cat > config.cache << EOF 34 ac_cv_func_lckpwdf=no 35 EOF</userinput></screen> 32 36 33 37 <para>Prepare Shadow for compilation:</para>
Note:
See TracChangeset
for help on using the changeset viewer.