Changeset f3a1e98 in clfs-sysroot for BOOK/final-system/common/bash.xml


Ignore:
Timestamp:
Jan 4, 2009, 1:51:36 PM (16 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
master
Children:
0e17eae
Parents:
ad97072
Message:

Change BLFS references to CBLFS.
Fix Findutils compilation issue by adding config.cache entriers.
Remove unneeded config.h modification from the gawk page.

File:
1 edited

Legend:

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

    rad97072 rf3a1e98  
    3535
    3636    <para os="c">When bash is cross-compiled, it cannot test for the presence
    37     of named pipes. If you used <command>su</command> to become an unprivileged
    38     user, this combination will cause Bash to build without <emphasis>process
    39     substitution</emphasis>.</para>
     37    of named pipes, amoung other things. If you used <command>su</command> to
     38    become an unprivileged user, this combination will cause Bash to build
     39    without <emphasis>process substitution</emphasis>, which will break one
     40    of the c++ test scripts in <literal>glibc</literal>. The following prevents
     41    future problems by skipping tests that can not run while cross-compiling
     42    or that do not run properly:</para>
    4043
    41     <screen os="d"><userinput>echo "bash_cv_sys_named_pipes=yes" &gt; config.cache</userinput></screen>
     44<screen os="d"><userinput>cat &gt; config.cache &lt;&lt; "EOF"
     45ac_cv_func_mmap_fixed_mapped=yes
     46ac_cv_func_strcoll_works=yes
     47ac_cv_func_working_mktime=yes
     48bash_cv_func_sigsetjmp=present
     49bash_cv_getcwd_malloc=yes
     50bash_cv_job_control_missing=present
     51bash_cv_printf_a_format=yes
     52bash_cv_sys_named_pipes=present
     53bash_cv_ulimit_maxfds=yes
     54bash_cv_under_sys_siglist=yes
     55bash_cv_unusable_rtsigs=no
     56gt_cv_int_divbyzero_sigfpe=yes
     57EOF</userinput></screen>
    4258
    4359<para os="e">Prepare Bash for compilation:</para>
Note: See TracChangeset for help on using the changeset viewer.