Changeset cc8d737 in clfs-sysroot for BOOK/final-system
- Timestamp:
- Mar 15, 2009, 7:07:43 PM (16 years ago)
- Branches:
- master
- Children:
- 8909252
- Parents:
- 47dadc6
- Location:
- BOOK/final-system/common
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/final-system/common/bison.xml
r47dadc6 rcc8d737 35 35 this:</para> 36 36 37 <screen os="b2"><userinput>echo '#define YYENABLE_NLS 1' >> config.h</userinput></screen> 37 <screen os="b2"><userinput>cat >> config.h << "EOF" 38 #define YYENABLE_NLS 1 39 EOF</userinput></screen> 38 40 39 41 <para os="c">Compile the package:</para> -
BOOK/final-system/common/coreutils.xml
r47dadc6 rcc8d737 57 57 to correct this:</para> 58 58 59 <screen os="b"><userinput>echo "fu_cv_sys_stat_statfs2_bsize=yes" > config.cache</userinput></screen> 59 <screen os="b"><userinput>cat > config.cache << EOF 60 fu_cv_sys_stat_statfs2_bsize=yes 61 EOF</userinput></screen> 60 62 61 63 <para os="c">Now prepare Coreutils for compilation:</para> -
BOOK/final-system/common/findutils.xml
r47dadc6 rcc8d737 31 31 run a select few tests, Set the values manually:</para> 32 32 33 <screen os="c2"><userinput>echo "gl_cv_func_wcwidth_works=yes" > config.cache 34 echo "gl_cv_header_working_fcntl_h=yes" >> config.cache 35 echo "ac_cv_func_fnmatch_gnu=yes" >> config.cache</userinput></screen> 33 <screen os="c2"><userinput>cat > config.cache << EOF 34 gl_cv_func_wcwidth_works=yes 35 gl_cv_header_working_fcntl_h=yes 36 ac_cv_func_fnmatch_gnu=yes 37 EOF</userinput></screen> 36 38 37 39 <para os="a">Prepare Findutils for compilation:</para> -
BOOK/final-system/common/gettext.xml
r47dadc6 rcc8d737 31 31 run a select few tests, Set the values manually:</para> 32 32 33 <screen os="c2"><userinput>echo "am_cv_func_iconv_works=yes" > config.cache 34 echo "gl_cv_func_wcwidth_works=yes" >> config.cache 35 echo "gt_cv_func_printf_posix=yes" >> config.cache 36 echo "gt_cv_int_divbyzero_sigfpe=yes" >> config.cache</userinput></screen> 33 <screen os="c2"><userinput>cat > config.cache << EOF 34 am_cv_func_iconv_works=yes 35 gl_cv_func_wcwidth_works=yes 36 gt_cv_func_printf_posix=yes 37 gt_cv_int_divbyzero_sigfpe=yes 38 EOF</userinput></screen> 37 39 38 40 <para os="a">Prepare Gettext for compilation:</para> -
BOOK/final-system/common/kbd.xml
r47dadc6 rcc8d737 29 29 run a select few tests, Set the values manually:</para> 30 30 31 <screen os="cc1"><userinput>echo "ac_cv_func_setpgrp_void=yes" > config.cache 32 echo "ac_cv_func_malloc_0_nonnull=yes" >> config.cache 33 echo "ac_cv_func_realloc_0_nonnull=yes" >> config.cache</userinput></screen> 31 <screen os="cc1"><userinput>cat > config.cache << EOF 32 ac_cv_func_setpgrp_void=yes 33 ac_cv_func_malloc_0_nonnull=yes 34 ac_cv_func_realloc_0_nonnull=yes 35 EOF</userinput></screen> 34 36 35 37 <para os="a">Prepare Kbd for compilation:</para> -
BOOK/final-system/common/patch.xml
r47dadc6 rcc8d737 33 33 force the fallback value.</para> 34 34 35 <screen os="b"><userinput>echo "ac_cv_path_ed_PROGRAM=ed" > config.cache</userinput></screen> 35 <screen os="b"><userinput>cat > config.cache << EOF 36 ac_cv_path_ed_PROGRAM=ed 37 EOF</userinput></screen> 36 38 37 39 <para os="c">Prepare Patch for compilation:</para> -
BOOK/final-system/common/psmisc.xml
r47dadc6 rcc8d737 30 30 following tells it that we do:</para> 31 31 32 <screen os="a2"><userinput>echo "ac_cv_func_malloc_0_nonnull=yes" > config.cache 33 echo "ac_cv_func_realloc_0_nonnull=yes" >> config.cache</userinput></screen> 32 <screen os="a2"><userinput>cat > config.cache << EOF 33 ac_cv_func_malloc_0_nonnull=yes 34 ac_cv_func_realloc_0_nonnull=yes 35 EOF</userinput></screen> 34 36 35 37 <para os="a">Prepare Psmisc for compilation:</para> -
BOOK/final-system/common/shadow.xml
r47dadc6 rcc8d737 37 37 cannot be run when cross-compiling:</para> 38 38 39 <screen os="c"><userinput>echo "ac_cv_func_setpgrp_void=yes" > config.cache</userinput></screen> 39 <screen os="c"><userinput>cat > config.cache << EOF 40 ac_cv_func_setpgrp_void=yes 41 EOF</userinput></screen> 40 42 41 43 <para os="d">Prepare Shadow for compilation:</para> -
BOOK/final-system/common/variables.xml
r47dadc6 rcc8d737 25 25 prevent issues if you stop and come back later:</para> 26 26 27 <screen><userinput>echo export CC=\""${CC}\"" >> ~/.bashrc 28 echo export CXX=\""${CXX}\"" >> ~/.bashrc 29 echo export AR=\""${AR}\"" >> ~/.bashrc 30 echo export AS=\""${AS}\"" >> ~/.bashrc 31 echo export RANLIB=\""${RANLIB}\"" >> ~/.bashrc 32 echo export LD=\""${LD}\"" >> ~/.bashrc 33 echo export STRIP=\""${STRIP}\"" >> ~/.bashrc</userinput></screen> 27 <screen><userinput>cat > config.cache << EOF 28 export CC="${CC}" 29 export CXX="${CXX}" 30 export AR="${AR}" 31 export AS="${AS}" 32 export RANLIB="${RANLIB}" 33 export LD="${LD}" 34 export STRIP="${STRIP}" 35 EOF</userinput></screen> 34 36 35 37 </sect1> -
BOOK/final-system/common/vim.xml
r47dadc6 rcc8d737 62 62 class="directory">/etc</filename>:</para> 63 63 64 <screen os="c"><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h</userinput></screen> 64 <screen os="c"><userinput>cat >> src/feature.h << "EOF" 65 #define SYS_VIMRC_FILE "/etc/vimrc" 66 EOF</userinput></screen> 65 67 66 68 <para os="d">Prepare Vim for compilation:</para>
Note:
See TracChangeset
for help on using the changeset viewer.